package com.amplify.honeydew_server; import java.util.Map; public class Command { private String action; private Map arguments; public Command(String action, Map arguments) { this.action = action; this.arguments = arguments; } public String getAction() { return action; } public Map getArguments() { return arguments; } }