From 05871a2ea7ac7da4ca31323bf70ac7d2d59224fe Mon Sep 17 00:00:00 2001 From: Vladimir Eliezer Tokarev Date: Sat, 9 Jan 2016 02:29:15 -0800 Subject: [PATCH] Created RegistryTagTypes file this file have the different tags for registry messages --- .../main/java/meerkat/RegistryTagTypes.java | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 voter-registry/src/main/java/meerkat/RegistryTagTypes.java 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:"; + +}