Class DefaultOnlineResource
java.lang.Object
org.apache.sis.metadata.AbstractMetadata
org.apache.sis.metadata.ModifiableMetadata
org.apache.sis.metadata.iso.ISOMetadata
org.apache.sis.metadata.iso.citation.DefaultOnlineResource
- All Implemented Interfaces:
Serializable,Emptiable,LenientComparable,IdentifiedObject,org.opengis.metadata.citation.OnlineResource
public class DefaultOnlineResource
extends ISOMetadata
implements org.opengis.metadata.citation.OnlineResource
Information about on-line sources from which the dataset, specification, or
community profile name and extended metadata elements can be obtained.
The following property is mandatory in a well-formed metadata according ISO 19115:
CI_OnlineResource
└─linkage……………… Location (address) for on-line access using a Uniform Resource Locator address or similar addressing scheme.Limitations
- Instances of this class are not synchronized for multi-threading. Synchronization, if needed, is caller's responsibility.
- Serialized objects of this class are not guaranteed to be compatible with future Apache SIS releases.
Serialization support is appropriate for short term storage or RMI between applications running the
same version of Apache SIS. For long term storage, use
XMLinstead.
- Since:
- 0.3
- Version:
- 1.0
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class org.apache.sis.metadata.ModifiableMetadata
ModifiableMetadata.State -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate StringName of an application profile that can be used with the online resource.private org.opengis.util.InternationalStringDetailed text description of what the online resource is/does.private org.opengis.metadata.citation.OnLineFunctionCode for function performed by the online resource.private URILocation (address) for on-line access using a Uniform Resource Locator address or similar addressing scheme such as "http://www.statkart.no/isotc211".private StringName of the online resources.private StringThe connection protocol to be used.private StringRequest used to access the resource depending on the protocol.private static final longSerial number for inter-operability with different versions.Fields inherited from class org.apache.sis.metadata.iso.ISOMetadata
identifiers -
Constructor Summary
ConstructorsConstructorDescriptionCreates an initially empty on line resource.DefaultOnlineResource(URI linkage) Creates an on line resource initialized to the given URI.DefaultOnlineResource(org.opengis.metadata.citation.OnlineResource object) Constructs a new instance initialized with the values from the specified metadata object. -
Method Summary
Modifier and TypeMethodDescriptionstatic DefaultOnlineResourcecastOrCopy(org.opengis.metadata.citation.OnlineResource object) Returns a SIS metadata implementation with the values of the given arbitrary implementation.Returns the name of an application profile that can be used with the online resource.org.opengis.util.InternationalStringReturns the detailed text description of what the online resource is/does.org.opengis.metadata.citation.OnLineFunctionReturns the code for function performed by the online resource.Returns the location (address) for on-line access using a Uniform Resource Locator address or similar addressing scheme.getName()Name of the online resource.Returns the connection protocol to be used.Returns the request used to access the resource depending on the protocol.voidsetApplicationProfile(String newValue) Sets the name of an application profile that can be used with the online resource.voidsetDescription(org.opengis.util.InternationalString newValue) Sets the detailed text description of what the online resource is/does.voidsetFunction(org.opengis.metadata.citation.OnLineFunction newValue) Sets the code for function performed by the online resource.voidsetLinkage(URI newValue) Sets the location (address) for on-line access using a Uniform Resource Locator address or similar addressing scheme such as "http://www.statkart.no/isotc211".voidSets the name of the online resource.voidsetProtocol(String newValue) Sets the connection protocol to be used.voidsetProtocolRequest(String newValue) Sets the request to be used.Methods inherited from class org.apache.sis.metadata.iso.ISOMetadata
getIdentifier, getIdentifierMap, getIdentifiers, getStandard, setIdentifier, transitionToMethods inherited from class org.apache.sis.metadata.ModifiableMetadata
checkWritePermission, collectionType, copyCollection, copyList, copyMap, copySet, deepCopy, nonNullCollection, nonNullList, nonNullMap, nonNullSet, singleton, state, writeCollection, writeList, writeMap, writeSetMethods inherited from class org.apache.sis.metadata.AbstractMetadata
asMap, asTreeTable, equals, equals, getInterface, hashCode, isEmpty, prune, toString
-
Field Details
-
serialVersionUID
private static final long serialVersionUIDSerial number for inter-operability with different versions.- See Also:
-
linkage
Location (address) for on-line access using a Uniform Resource Locator address or similar addressing scheme such as "http://www.statkart.no/isotc211". -
protocol
The connection protocol to be used. -
applicationProfile
Name of an application profile that can be used with the online resource. -
name
Name of the online resources. -
description
private org.opengis.util.InternationalString descriptionDetailed text description of what the online resource is/does. -
function
private org.opengis.metadata.citation.OnLineFunction functionCode for function performed by the online resource. -
protocolRequest
Request used to access the resource depending on the protocol. This is used mainly for POST requests.
-
-
Constructor Details
-
DefaultOnlineResource
public DefaultOnlineResource()Creates an initially empty on line resource. -
DefaultOnlineResource
Creates an on line resource initialized to the given URI.- Parameters:
linkage- the location for on-line access using a Uniform Resource Locator address, ornullif none.
-
DefaultOnlineResource
public DefaultOnlineResource(org.opengis.metadata.citation.OnlineResource object) Constructs a new instance initialized with the values from the specified metadata object. This is a shallow copy constructor, because the other metadata contained in the given object are not recursively copied.- Parameters:
object- the metadata to copy values from, ornullif none.- See Also:
-
-
Method Details
-
castOrCopy
Returns a SIS metadata implementation with the values of the given arbitrary implementation. This method performs the first applicable action in the following choices:- If the given object is
null, then this method returnsnull. - Otherwise if the given object is already an instance of
DefaultOnlineResource, then it is returned unchanged. - Otherwise a new
DefaultOnlineResourceinstance is created using the copy constructor and returned. Note that this is a shallow copy operation, because the other metadata contained in the given object are not recursively copied.
- Parameters:
object- the object to get as a SIS implementation, ornullif none.- Returns:
- a SIS implementation containing the values of the given object (may be the
given object itself), or
nullif the argument was null.
- If the given object is
-
getApplicationProfile
Returns the name of an application profile that can be used with the online resource. Returnsnullif none.- Specified by:
getApplicationProfilein interfaceorg.opengis.metadata.citation.OnlineResource- Returns:
- application profile that can be used with the online resource, or
null.
-
setApplicationProfile
Sets the name of an application profile that can be used with the online resource.- Parameters:
newValue- the new application profile.
-
getName
Name of the online resource. Returnsnullif none.Upcoming API change — internationalization
The return type may be changed fromStringtoInternationalStringin GeoAPI 4.0.- Specified by:
getNamein interfaceorg.opengis.metadata.citation.OnlineResource- Returns:
- name of the online resource, or
null.
-
setName
Sets the name of the online resource.Upcoming API change — internationalization
The argument type may be changed fromStringtoInternationalStringin GeoAPI 4.0.- Parameters:
newValue- the new name, ornullif none.
-
getDescription
public org.opengis.util.InternationalString getDescription()Returns the detailed text description of what the online resource is/does.- Specified by:
getDescriptionin interfaceorg.opengis.metadata.citation.OnlineResource- Returns:
- text description of what the online resource is/does, or
null.
-
setDescription
public void setDescription(org.opengis.util.InternationalString newValue) Sets the detailed text description of what the online resource is/does.- Parameters:
newValue- the new description, ornullif none.
-
getFunction
public org.opengis.metadata.citation.OnLineFunction getFunction()Returns the code for function performed by the online resource.- Specified by:
getFunctionin interfaceorg.opengis.metadata.citation.OnlineResource- Returns:
- function performed by the online resource, or
null.
-
setFunction
public void setFunction(org.opengis.metadata.citation.OnLineFunction newValue) Sets the code for function performed by the online resource.- Parameters:
newValue- the new function, ornullif none.
-
getLinkage
Returns the location (address) for on-line access using a Uniform Resource Locator address or similar addressing scheme.- Specified by:
getLinkagein interfaceorg.opengis.metadata.citation.OnlineResource- Returns:
- location for on-line access using a Uniform Resource Locator address or similar scheme, or
null.
-
setLinkage
Sets the location (address) for on-line access using a Uniform Resource Locator address or similar addressing scheme such as "http://www.statkart.no/isotc211".- Parameters:
newValue- the new linkage, ornullif none.
-
getProtocol
Returns the connection protocol to be used.Example: ftp, http get KVP, http POST, etc.- Specified by:
getProtocolin interfaceorg.opengis.metadata.citation.OnlineResource- Returns:
- connection protocol to be used, or
null.
-
setProtocol
Sets the connection protocol to be used.- Parameters:
newValue- the new protocol, ornullif none.
-
getProtocolRequest
@UML(identifier="protocolRequest", obligation=OPTIONAL, specification=ISO_19115) public String getProtocolRequest()Returns the request used to access the resource depending on the protocol. This is used mainly for POST requests.Example:- Returns:
- Request used to access the resource.
- Since:
- 0.5
-
setProtocolRequest
Sets the request to be used.- Parameters:
newValue- the new request, ornullif none.- Since:
- 0.5
-