package w3c.model.www.pep.extensions.remoteControl;
import w3c.model.www.pep.PEPExtensionInstance;
public class ClientInstance extends PEPExtensionInstance
String cmd;
ClientInstance ( String headerName, String cmd) {
super(headerName);
this.cmd = cmd;
}
String getCommand () {
return cmd;
}