private HashMap actions = new HashMap();
public PowerSwitchService(LightModel model){
this.model = model;
status = new StatusStateVariable(model);
target = new TargetStateVariable();
this.states = new UPnPStateVariable[]{status,target};
UPnPAction setTarget = new SetTargetAction(model,target);
UPnPAction getTarget = new GetTargetAction(model,target);