private volatile LocationService m_ls;
private volatile Map<String, UPnPAction> m_actions;
public UPnPLocationServiceWrapper() {
m_actions = new HashMap<String, UPnPAction>();
UPnPAction location = new GetLocationAction(this);
m_actions.put(location.getName(), location);
UPnPAction type = new GetServerTypeAction(this);
m_actions.put(type.getName(), type);
UPnPAction load = new GetServerLoadAction(this);
m_actions.put(load.getName(), load);
}