Interface UPnPService
-
public interface UPnPServiceA representation of a UPnP Service. Each UPnP device contains zero or more services. The UPnP description for a service defines actions, their arguments, and event characteristics.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UPnPActiongetAction(java.lang.String name)Locates a specific action by name.UPnPAction[]getActions()Lists all actions provided by this service.java.lang.StringgetId()Returns theserviceIdfield in the UPnP service description.UPnPStateVariablegetStateVariable(java.lang.String name)Gets aUPnPStateVariableobjects provided by this service by nameUPnPStateVariable[]getStateVariables()Lists allUPnPStateVariableobjects provided by this service.java.lang.StringgetType()Returns theserviceTypefield in the UPnP service description.java.lang.StringgetVersion()Returns the version suffix encoded in theserviceTypefield in the UPnP service description.
-
-
-
Field Detail
-
TYPE
static final java.lang.String TYPE
Property key for the optional service type uri. The service type property is used when registering UPnP Device services and UPnP Event Listener services. The property contains aStringarray (String[]) of service types. A UPnP Device service can thus announce what types of services it contains. A UPnP Event Listener service can announce for what type of UPnP services it wants notifications. The service version is encoded in the type string as specified in the UPnP specification. Anullvalue is a wildcard, matching all service types. Value is "UPnP.service.type".- See Also:
getType(), Constant Field Values
-
ID
static final java.lang.String ID
Property key for the optional service id. The service id property is used when registering UPnP Device services or UPnP Event Listener services. The value of the property contains aStringarray (String[]) of service ids. A UPnP Device service can thus announce what service ids it contains. A UPnP Event Listener service can announce for what UPnP service ids it wants notifications. A service id does not have to be universally unique. It must be unique only within a device. Anullvalue is a wildcard, matching all services. The value is "UPnP.service.id".- See Also:
- Constant Field Values
-
-
Method Detail
-
getId
java.lang.String getId()
Returns theserviceIdfield in the UPnP service description.For standard services defined by a UPnP Forum working committee, the serviceId must contain the following components in the indicated order:
urn:upnp-org:serviceId:- service ID suffix
urn:upnp-org:serviceId:serviceID.Note that
upnp-orgis used instead ofschemas-upnp-orgin this example because an XML schema is not defined for each serviceId.For non-standard services specified by UPnP vendors, the serviceId must contain the following components in the indicated order:
urn:- ICANN domain name owned by the vendor
:serviceId:- service ID suffix
urn:domain-name:serviceId:serviceID.This method must continue to return the service id after the UPnP service has been removed from the network.
- Returns:
- The service ID suffix defined by a UPnP Forum working committee or specified by a UPnP vendor. Must be <= 64 characters. Single URI.
-
getType
java.lang.String getType()
Returns theserviceTypefield in the UPnP service description.For standard services defined by a UPnP Forum working committee, the serviceType must contain the following components in the indicated order:
urn:schemas-upnp-org:service:- service type suffix:
- integer service version
urn:schemas-upnp-org:service:serviceType:v.For non-standard services specified by UPnP vendors, the
serviceTypemust contain the following components in the indicated order:urn:- ICANN domain name owned by the vendor
:service:- service type suffix:
- integer service version
urn:domain-name:service:serviceType:v.This method must continue to return the service type after the UPnP service has been removed from the network.
- Returns:
- The service type suffix defined by a UPnP Forum working committee or specified by a UPnP vendor. Must be <= 64 characters, not including the version suffix and separating colon. Single URI.
-
getVersion
java.lang.String getVersion()
Returns the version suffix encoded in theserviceTypefield in the UPnP service description.This method must continue to return the service version after the UPnP service has been removed from the network.
- Returns:
- The integer service version defined by a UPnP Forum working committee or specified by a UPnP vendor.
-
getAction
UPnPAction getAction(java.lang.String name)
Locates a specific action by name. Looks up an action by its name.- Parameters:
name- Name of action. Must not contain hyphen or hash characters. Should be < 32 characters.- Returns:
- The requested action or
nullif no action is found. - Throws:
java.lang.IllegalStateException- if the UPnP service has been removed from the network.
-
getActions
UPnPAction[] getActions()
Lists all actions provided by this service.- Returns:
- Array of actions (
UPnPAction[])ornullif no actions are defined for this service. - Throws:
java.lang.IllegalStateException- if the UPnP service has been removed from the network.
-
getStateVariables
UPnPStateVariable[] getStateVariables()
Lists allUPnPStateVariableobjects provided by this service.- Returns:
- Array of state variables or
nullif none are defined for this service. - Throws:
java.lang.IllegalStateException- if the UPnP service has been removed from the network.
-
getStateVariable
UPnPStateVariable getStateVariable(java.lang.String name)
Gets aUPnPStateVariableobjects provided by this service by name- Parameters:
name- Name of the State Variable- Returns:
- State variable or
nullif no such state variable exists for this service. - Throws:
java.lang.IllegalStateException- if the UPnP service has been removed from the network.
-
-