Examples of GetLocationAction


Examples of org.apache.ace.location.upnp.actions.GetLocationAction

  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);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.