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);
}