diff --git a/voter-registry/src/main/java/meerkat/RegistryTagTypes.java b/voter-registry/src/main/java/meerkat/RegistryTagTypes.java new file mode 100644 index 0000000..a175970 --- /dev/null +++ b/voter-registry/src/main/java/meerkat/RegistryTagTypes.java @@ -0,0 +1,26 @@ +package meerkat; + +/** + * Created by Vladimir Eliezer Tokarev on 1/9/2016. + * Have the tags for the registry messages + */ +public abstract class RegistryTagTypes { + + private RegistryTagTypes(){} + + // The ID tag + public static final String ID_TYPE = "ID:"; + + // The Voter Entry Tag + public static final String VOTER_ENTRY_TAG = "Voter Entry:"; + + // THE Group ID Tag + public static final String GROUP_ID_TAG = "Group ID:"; + + // The Group Action Tag + public static final String GROUP_ACTION_TAG = "Group Action:"; + + // The Vote Action Tag + public static final String VOTE_ACTION_TAG = "Vote Action:"; + +}