|
OSGi™ Service Platform Release 4 Version 4.1 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
A UPnP action. Each UPnP service contains zero or more actions. Each action may have zero or more UPnP state variables as arguments.
Method Summary | |
java.lang.String[] |
getInputArgumentNames()
Lists all input arguments for this action. |
java.lang.String |
getName()
Returns the action name. |
java.lang.String[] |
getOutputArgumentNames()
List all output arguments for this action. |
java.lang.String |
getReturnArgumentName()
Returns the name of the designated return argument. |
UPnPStateVariable |
getStateVariable(java.lang.String argumentName)
Finds the state variable associated with an argument name. |
java.util.Dictionary |
invoke(java.util.Dictionary args)
Invokes the action. |
Method Detail |
public java.lang.String getName()
name
field in the
actionList
of the service description.
X_
nor A_
.X_
.
public java.lang.String getReturnArgumentName()
One of the output arguments can be flagged as a designated return argument.
null
if
none is marked.public java.lang.String[] getInputArgumentNames()
Each action may have zero or more input arguments.
null
if no input
arguments.UPnPStateVariable
public java.lang.String[] getOutputArgumentNames()
null
if there are no
output arguments.UPnPStateVariable
public UPnPStateVariable getStateVariable(java.lang.String argumentName)
argumentName
- The name of the UPnP action argument.
null
if there is no such argument.UPnPStateVariable
public java.util.Dictionary invoke(java.util.Dictionary args) throws java.lang.Exception
Dictionary
objects. Each entry in the Dictionary
object has a
String
object as key representing the argument name and the
value is the argument itself. The class of an argument value must be
assignable from the class of the associated UPnP state variable.
The input argument Dictionary
object must contain exactly
those arguments listed by getInputArguments
method. The output
argument Dictionary
object will contain exactly those
arguments listed by getOutputArguments
method.
args
- A Dictionary
of arguments. Must contain the correct set and
type of arguments for this action. May be null
if no
input arguments exist.
Dictionary
with the output arguments.
null
if the action has no output arguments.
UPnPException
- A UPnP error has occured.
java.lang.Exception
- The execution fails for some reason.UPnPStateVariable
|
OSGi™ Service Platform Release 4 Version 4.1 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |