com.github.ltsopensource.cmd.HttpCmdProc Maven / Gradle / Ivy
package com.github.ltsopensource.cmd;
/**
* Cmd 处理器
* @author Robert HG ([email protected]) on 10/26/15.
*/
public interface HttpCmdProc {
String nodeIdentity();
String getCommand();
HttpCmdResponse execute(HttpCmdRequest request) throws Exception;
}