Created RegistryTagTypes file

this file have the different tags for registry messages
vote-registry
Vladimir Eliezer Tokarev 2016-01-09 02:29:15 -08:00
parent 070b851203
commit 05871a2ea7
1 changed files with 26 additions and 0 deletions

View File

@ -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:";
}