All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ae.teletronics.InputCommand Maven / Gradle / Ivy

package ae.teletronics;

import java.util.Collection;
import java.util.Map;

/**
 * Created by kristian on 3/28/16.
 */
public class InputCommand {

    public InputCommand(CommandType commandType) {
        this.commandType = commandType;
    }

    public InputCommand(CommandType commandType, Map inputParameters) {
        this.commandType = commandType;
        this.inputParameters = inputParameters;
    }

    public CommandType commandType;
    public Map inputParameters;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy