View Javadoc
1 2 package inklings.jgatms; 3 4 /*** 5 * Contains key Strings to identify all JGATMS commands. 6 * 7 * Any of these constants can be passed to the commons-chain API to get a 8 * command chain. The chain can then be executed by invoking 9 * <code>command.execute() </code>. 10 */ 11 public class CommandKeys { 12 13 /*** Disallow construction. */ 14 private CommandKeys() {} 15 16 public static final String GET_QUESTION = "getQuestion"; 17 public static final String GET_QUESTIONS = "getQuestions"; 18 public static final String GET_RESPONSES = "getResponses"; 19 public static final String ADD_RESPONSE_TO_QUESTION = 20 "addResponseToQuestion"; 21 public static final String GET_SKILLS_LIST = "getSkillsList"; 22 public static final String GET_MEMBER_LIST = "getMemberList"; 23 public static final String ADD_MEMBER = "addMember"; 24 25 }

This page was automatically generated by Maven