Package net.opengis.wps10
Interface OutputDataType
-
- All Superinterfaces:
DescriptionType
,EObject
,Notifier
- All Known Implementing Classes:
OutputDataTypeImpl
public interface OutputDataType extends DescriptionType
A representation of the model object 'Output Data Type'. Value of one output from a process. In this use, the DescriptionType shall describe this process output.The following features are supported:
- See Also:
Wps10Package.getOutputDataType()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DataType
getData()
Returns the value of the 'Data' containment reference.OutputReferenceType
getReference()
Returns the value of the 'Reference' containment reference.void
setData(DataType value)
Sets the value of the 'Data
' containment reference.void
setReference(OutputReferenceType value)
Sets the value of the 'Reference
' containment reference.-
Methods inherited from interface DescriptionType
getAbstract, getIdentifier, getMetadata, getTitle, setAbstract, setIdentifier, setTitle
-
-
-
-
Method Detail
-
getReference
OutputReferenceType getReference()
Returns the value of the 'Reference' containment reference. Identifies this output as a web accessible resource, and references that resource. This element shall only be used for complex data. This element shall be used by a server when "store" in the Execute request is "true".- Returns:
- the value of the 'Reference' containment reference.
- See Also:
setReference(OutputReferenceType)
,Wps10Package.getOutputDataType_Reference()
-
setReference
void setReference(OutputReferenceType value)
Sets the value of the 'Reference
' containment reference.- Parameters:
value
- the new value of the 'Reference' containment reference.- See Also:
getReference()
-
getData
DataType getData()
Returns the value of the 'Data' containment reference. Identifies this output value as a data embedded in this response, and includes that data. This element shall be used by a server when "store" in the Execute request is "false".- Returns:
- the value of the 'Data' containment reference.
- See Also:
setData(DataType)
,Wps10Package.getOutputDataType_Data()
-
-