Package org.apache.felix.upnp.sample.binaryLight.statevariables

Examples of org.apache.felix.upnp.sample.binaryLight.statevariables.StatusStateVariable


  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);
View Full Code Here

TOP

Related Classes of org.apache.felix.upnp.sample.binaryLight.statevariables.StatusStateVariable

Copyright © 2018 www.massapicom. 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.