Package org.opengis.metadata.citation
Interface OnlineResource
-
@UML(identifier="CI_OnlineResource", specification=ISO_19115) public interface OnlineResource
Information about on-line sources from which the dataset, specification, or community profile name and extended metadata elements can be obtained.- Since:
- 1.0
- Version:
- 3.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetApplicationProfile()Name of an application profile that can be used with the online resource.InternationalStringgetDescription()Detailed text description of what the online resource is/does.OnLineFunctiongetFunction()Code for function performed by the online resource.java.net.URIgetLinkage()Location (address) for on-line access using a Uniform Resource Locator address or similar addressing scheme such as"http://www.statkart.no/isotc211".java.lang.StringgetName()Name of the online resource.java.lang.StringgetProtocol()Connection protocol to be used.
-
-
-
Method Detail
-
getLinkage
@Profile(level=CORE) @UML(identifier="linkage", obligation=MANDATORY, specification=ISO_19115) java.net.URI getLinkage()
Location (address) for on-line access using a Uniform Resource Locator address or similar addressing scheme such as"http://www.statkart.no/isotc211".- Returns:
- Location for on-line access using a Uniform Resource Locator address or similar scheme.
-
getProtocol
@UML(identifier="protocol", obligation=OPTIONAL, specification=ISO_19115) java.lang.String getProtocol()
Connection protocol to be used. Returnsnullif none.- Returns:
- Connection protocol to be used, or
null.
-
getApplicationProfile
@UML(identifier="applicationProfile", obligation=OPTIONAL, specification=ISO_19115) java.lang.String getApplicationProfile()
Name of an application profile that can be used with the online resource. Returnsnullif none.- Returns:
- Application profile that can be used with the online resource, or
null.
-
getName
@UML(identifier="name", obligation=OPTIONAL, specification=ISO_19115) java.lang.String getName()
Name of the online resource. Returnsnullif none.- Returns:
- Name of the online resource, or
null. - Since:
- 2.1
-
getDescription
@UML(identifier="description", obligation=OPTIONAL, specification=ISO_19115) InternationalString getDescription()
Detailed text description of what the online resource is/does. Returnsnullif none.- Returns:
- Text description of what the online resource is/does, or
null.
-
getFunction
@UML(identifier="function", obligation=OPTIONAL, specification=ISO_19115) OnLineFunction getFunction()
Code for function performed by the online resource. Returnsnullif unspecified.- Returns:
- Function performed by the online resource, or
null.
-
-