Module org.opengis.geoapi
Interface OperationChainMetadata
@UML(identifier="SV_OperationChainMetadata",
specification=ISO_19115)
public interface OperationChainMetadata
Operation chain information.
- Since:
- 3.1
-
Method Summary
Modifier and TypeMethodDescriptiondefault InternationalString
A narrative explanation of the services in the chain and resulting output.getName()
The name as used by the service for this chain.List
<? extends OperationMetadata> Ordered information about the operations applied by the chain.
-
Method Details
-
getName
@UML(identifier="name", obligation=MANDATORY, specification=ISO_19115) InternationalString getName()The name as used by the service for this chain.- Returns:
- name as used by the service for this chain.
-
getDescription
@UML(identifier="description", obligation=OPTIONAL, specification=ISO_19115) default InternationalString getDescription()A narrative explanation of the services in the chain and resulting output.- Returns:
- narrative explanation of the services in the chain and resulting output, or
null
if none.
-
getOperations
@UML(identifier="operation", obligation=MANDATORY, specification=ISO_19115) List<? extends OperationMetadata> getOperations()Ordered information about the operations applied by the chain.- Returns:
- information about the operations applied by the chain.
-