CscCommand.java 439 Bytes
Newer Older
TongZuu committed
1 2
package com.csc.library.command;

TongZuu committed
3 4
import com.csc.library.properties.CommandStateTemp;
import com.csc.library.request.CommandState;
TongZuu committed
5 6 7 8 9 10 11
import com.csc.library.request.RequestWebsocket;
import com.csc.library.response.ResponseData;

public interface CscCommand<T> {
	public void setRequest(RequestWebsocket req);
	public void execute(T param) throws Exception;
	public void setResult(ResponseData res);
TongZuu committed
12
	public CommandState getCommandState();
TongZuu committed
13
}