Class DefaultResponsibility
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.DefaultResponsibility
- All Implemented Interfaces:
Serializable
,Emptiable
,LenientComparable
,IdentifiedObject
- Direct Known Subclasses:
DefaultResponsibleParty
@UML(identifier="CI_Responsibility",
specification=ISO_19115)
public class DefaultResponsibility
extends ISOMetadata
Information about the party and their role.
The following properties are mandatory or conditional (i.e. mandatory under some circumstances)
in a well-formed metadata according ISO 19115:
CI_Responsibility
├─party……………………
Information about the parties.
│ └─name……………
Name of the party.
└─role………………………
Function performed by the responsible party.Note on International Standard versions
This class is derived from a new type defined in the ISO 19115 international standard published in 2014, while GeoAPI 3.0 is based on the version published in 2003. Consequently this implementation class does not yet implement a GeoAPI interface, but is expected to do so after the next GeoAPI releases. When the interface will become available, all references to this implementation class in Apache SIS will be replaced be references to the
This class is derived from a new type defined in the ISO 19115 international standard published in 2014, while GeoAPI 3.0 is based on the version published in 2003. Consequently this implementation class does not yet implement a GeoAPI interface, but is expected to do so after the next GeoAPI releases. When the interface will become available, all references to this implementation class in Apache SIS will be replaced be references to the
Responsibility
interface.
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
XML
instead.
- Since:
- 0.5
- 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 Collection<org.opengis.metadata.extent.Extent>
Spatial or temporal extents of the role.private Collection<AbstractParty>
Information about the parties.private org.opengis.metadata.citation.Role
Function performed by the responsible party.private static final long
Serial number for inter-operability with different versions.Fields inherited from class org.apache.sis.metadata.iso.ISOMetadata
identifiers
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs an initially empty responsible party.Constructs a new instance initialized with the values from the specified metadata object.DefaultResponsibility
(org.opengis.metadata.citation.ResponsibleParty object) Bridge constructor forDefaultResponsibleParty(ResponsibleParty)
.DefaultResponsibility
(org.opengis.metadata.citation.Role role, org.opengis.metadata.extent.Extent extent, AbstractParty party) Constructs a responsibility initialized to the specified values. -
Method Summary
Modifier and TypeMethodDescriptionprivate Collection<org.opengis.metadata.extent.Extent>
Invoked by JAXB at both marshalling and unmarshalling time.Collection<org.opengis.metadata.extent.Extent>
Returns the spatial or temporal extents of the role.Returns information about the parties.private Collection<AbstractParty>
getParty()
org.opengis.metadata.citation.Role
getRole()
Returns the function performed by the responsible party.void
setExtents
(Collection<? extends org.opengis.metadata.extent.Extent> newValues) Sets the spatial and temporal extents of the role.void
setParties
(Collection<? extends AbstractParty> newValues) Sets information about the parties.void
setRole
(org.opengis.metadata.citation.Role newValue) Sets the function performed by the responsible party.Methods inherited from class org.apache.sis.metadata.iso.ISOMetadata
getIdentifier, getIdentifierMap, getIdentifiers, getStandard, setIdentifier, transitionTo
Methods inherited from class org.apache.sis.metadata.ModifiableMetadata
checkWritePermission, collectionType, copyCollection, copyList, copyMap, copySet, deepCopy, nonNullCollection, nonNullList, nonNullMap, nonNullSet, singleton, state, writeCollection, writeList, writeMap, writeSet
Methods 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:
-
role
private org.opengis.metadata.citation.Role roleFunction performed by the responsible party. -
extents
Spatial or temporal extents of the role. -
parties
Information about the parties.
-
-
Constructor Details
-
DefaultResponsibility
public DefaultResponsibility()Constructs an initially empty responsible party. -
DefaultResponsibility
public DefaultResponsibility(org.opengis.metadata.citation.Role role, org.opengis.metadata.extent.Extent extent, AbstractParty party) Constructs a responsibility initialized to the specified values.- Parameters:
role
- function performed by the responsible party, ornull
.extent
- spatial or temporal extent of the role, ornull
.party
- information about the party, ornull
.
-
DefaultResponsibility
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, ornull
if none.
-
DefaultResponsibility
DefaultResponsibility(org.opengis.metadata.citation.ResponsibleParty object) Bridge constructor forDefaultResponsibleParty(ResponsibleParty)
.
-
-
Method Details
-
getRole
@UML(identifier="role", obligation=MANDATORY, specification=ISO_19115) public org.opengis.metadata.citation.Role getRole()Returns the function performed by the responsible party.- Returns:
- function performed by the responsible party.
-
setRole
public void setRole(org.opengis.metadata.citation.Role newValue) Sets the function performed by the responsible party.- Parameters:
newValue
- the new role, ornull
if none.
-
getExtents
@UML(identifier="extent", obligation=OPTIONAL, specification=ISO_19115) public Collection<org.opengis.metadata.extent.Extent> getExtents()Returns the spatial or temporal extents of the role.- Returns:
- the spatial or temporal extents of the role.
-
setExtents
Sets the spatial and temporal extents of the role.- Parameters:
newValues
- the new spatial and temporal extents of the role.
-
getParties
@UML(identifier="party", obligation=MANDATORY, specification=ISO_19115) public Collection<AbstractParty> getParties()Returns information about the parties.Upcoming API change — generalization
The element type will be changed to theParty
interface when GeoAPI will provide it (tentatively in GeoAPI 3.1).- Returns:
- information about the parties.
-
setParties
Sets information about the parties.Upcoming API change — generalization
The element type will be changed to theParty
interface when GeoAPI will provide it (tentatively in GeoAPI 3.1).- Parameters:
newValues
- new information about the parties.
-
getExtent
Invoked by JAXB at both marshalling and unmarshalling time. This attribute has been added by ISO 19115:2014 standard. If (and only if) marshalling an older standard version, we omit this attribute. -
getParty
-