actions = new Hashtable();
stateVariables=new Hashtable();
/*
* action
*/
ActionList actionlist = service.getActionList();
for (int i = 0; i < actionlist.size(); i++) {
Action act = actionlist.getAction(i);
actions.put(act.getName(), new UPnPActionImpl(act,this));
}
/*StateVariable*/
ServiceStateTable stateTable=service.getServiceStateTable();
for(int i=0;i<stateTable.size();i++){