Move Enums to API

This commit is contained in:
Len
2022-10-19 17:50:15 +02:00
parent 2ef0fbf727
commit 19c68e4ead
2 changed files with 0 additions and 0 deletions
@@ -1,13 +0,0 @@
package com.alttd;
enum RequestType {
TRY_LOCK("try-lock"),
TRY_UNLOCK("try-unlock"),
CHECK_LOCK("check-lock");
String subChannel;
RequestType(String subChannel) {
this.subChannel = subChannel;
}
}
@@ -1,9 +0,0 @@
package com.alttd;
public enum ResponseType {
TRY_LOCK_RESULT,
QUEUE_LOCK_FAILED,
TRY_UNLOCK_RESULT,
LOCKED_QUEUE_LOCK,
CHECK_LOCK_RESULT
}