Class DefaultResponsibleParty
- All Implemented Interfaces:
Serializable
,Emptiable
,LenientComparable
,IdentifiedObject
,org.opengis.metadata.citation.ResponsibleParty
CI_ResponsibleParty
├─role……………………………
Function performed by the responsible party.
└─party…………………………
Information about the parties.
└─name…………………
Name of the party.As of ISO 19115:2014, the
ResponsibleParty
type has been replaced by Responsibility
to allow more flexible associations of individuals, organisations, and roles.
This ResponsibleParty
interface may be deprecated in GeoAPI 4.0.
- Since:
- 0.3
- Version:
- 1.1
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class org.apache.sis.metadata.ModifiableMetadata
ModifiableMetadata.State
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate 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.DefaultResponsibleParty
(org.opengis.metadata.citation.ResponsibleParty object) Constructs a new instance initialized with the values from the specified metadata object.DefaultResponsibleParty
(org.opengis.metadata.citation.Role role) Constructs a responsibility party with the given role. -
Method Summary
Modifier and TypeMethodDescriptionstatic DefaultResponsibleParty
castOrCopy
(org.opengis.metadata.citation.ResponsibleParty object) Returns a SIS metadata implementation with the values of the given arbitrary implementation.org.opengis.metadata.citation.Contact
Deprecated.private org.opengis.util.InternationalString
getIndividual
(boolean position) Returns the name or the position of the first individual.Deprecated.As of ISO 19115:2014, replaced bygetName()
inDefaultIndividual
.private static org.opengis.util.InternationalString
getName
(Collection<? extends AbstractParty> parties, Class<? extends AbstractParty> type, boolean position) Returns the name of the first party of the given type, ornull
if none.org.opengis.util.InternationalString
Deprecated.As of ISO 19115:2014, replaced bygetName()
inDefaultOrganisation
.org.opengis.util.InternationalString
Deprecated.As of ISO 19115:2014, replaced byDefaultIndividual.getPositionName()
.org.opengis.metadata.citation.Role
getRole()
Returns the function performed by the responsible party.private static AbstractParty
individual
(org.opengis.util.InternationalString name) Generates a new individual from the given name.private static AbstractParty
organisation
(org.opengis.util.InternationalString name) Generates a new organization from the given name.private static AbstractParty
position
(org.opengis.util.InternationalString name) Generates a new position from the given name.void
setContactInfo
(org.opengis.metadata.citation.Contact newValue) Deprecated.As of ISO 19115:2014, replaced byAbstractParty.setContactInfo(Collection)
.void
setIndividualName
(String newValue) Deprecated.As of ISO 19115:2014, replaced bysetName(InternationalString)
inDefaultIndividual
.private void
setName
(Class<? extends AbstractParty> type, boolean position, org.opengis.util.InternationalString name, Function<org.opengis.util.InternationalString, AbstractParty> creator) Sets the name of the first party of the given type.void
setOrganisationName
(org.opengis.util.InternationalString newValue) Deprecated.As of ISO 19115:2014, replaced bysetName(InternationalString)
inDefaultOrganisation
.void
setPositionName
(org.opengis.util.InternationalString newValue) Deprecated.As of ISO 19115:2014, replaced byDefaultIndividual.setPositionName(InternationalString)
.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.citation.DefaultResponsibility
getExtents, getParties, setExtents, setParties
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:
-
-
Constructor Details
-
DefaultResponsibleParty
public DefaultResponsibleParty()Constructs an initially empty responsible party. -
DefaultResponsibleParty
public DefaultResponsibleParty(org.opengis.metadata.citation.Role role) Constructs a responsibility party with the given role.- Parameters:
role
- the function performed by the responsible party, ornull
.
-
DefaultResponsibleParty
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.
-
DefaultResponsibleParty
public DefaultResponsibleParty(org.opengis.metadata.citation.ResponsibleParty object) Constructs a new instance initialized with the values from the specified metadata object. This is a shallow copy constructor, since the other metadata contained in the given object are not recursively copied.- Parameters:
object
- The metadata to copy values from, ornull
if none.- See Also:
-
-
Method Details
-
castOrCopy
public static DefaultResponsibleParty castOrCopy(org.opengis.metadata.citation.ResponsibleParty object) 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
DefaultResponsibleParty
, then it is returned unchanged. - Otherwise a new
DefaultResponsibleParty
instance 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, ornull
if none.- Returns:
- a SIS implementation containing the values of the given object (may be the
given object itself), or
null
if the argument was null.
- If the given object is
-
getIndividual
private org.opengis.util.InternationalString getIndividual(boolean position) Returns the name or the position of the first individual. If no individual is found in the list of parties, then this method will search in the list of organization members. The latter structure is used by our netCDF reader.- Parameters:
position
-true
for returning the position name instead of individual name.- Returns:
- the name or position of the first individual, or
null
. - See Also:
-
getName
private static org.opengis.util.InternationalString getName(Collection<? extends AbstractParty> parties, Class<? extends AbstractParty> type, boolean position) Returns the name of the first party of the given type, ornull
if none.- Parameters:
position
-true
for returning the position name instead of individual name.- Returns:
- the name or position of the first individual, or
null
. - See Also:
-
setName
private void setName(Class<? extends AbstractParty> type, boolean position, org.opengis.util.InternationalString name, Function<org.opengis.util.InternationalString, AbstractParty> creator) Sets the name of the first party of the given type. If no existing party is found, generate a new party using the given creator. -
getIndividualName
Deprecated.As of ISO 19115:2014, replaced bygetName()
inDefaultIndividual
.Returns the name of the responsible person- surname, given name, title separated by a delimiter. Only one ofindividualName
,organisationName
andpositionName
shall be provided.This implementation returns the name of the first
Individual
found in the collection of parties. If no individual is found in the parties, then this method fallbacks on the first organisation member.- Specified by:
getIndividualName
in interfaceorg.opengis.metadata.citation.ResponsibleParty
- Returns:
- name, surname, given name and title of the responsible person, or
null
.
-
setIndividualName
Deprecated.As of ISO 19115:2014, replaced bysetName(InternationalString)
inDefaultIndividual
.Sets the name of the responsible person- surname, given name, title separated by a delimiter. Only one ofindividualName
,organisationName
andpositionName
shall be provided.This implementation sets the name of the first
Individual
found in the collection of parties, or create a new individual if no existing instance was found.- Parameters:
newValue
- the new individual name, ornull
if none.
-
individual
Generates a new individual from the given name. -
getOrganisationName
Deprecated.As of ISO 19115:2014, replaced bygetName()
inDefaultOrganisation
.Returns the name of the responsible organization. Only one ofindividualName
,organisationName
andpositionName
shall be provided.This implementation returns the name of the first
Organisation
found in the collection of parties.- Specified by:
getOrganisationName
in interfaceorg.opengis.metadata.citation.ResponsibleParty
- Returns:
- name of the responsible organization, or
null
.
-
setOrganisationName
Deprecated.As of ISO 19115:2014, replaced bysetName(InternationalString)
inDefaultOrganisation
.Sets the name of the responsible organization. Only one ofindividualName
,organisationName
andpositionName
shall be provided.This implementation sets the name of the first
Organisation
found in the collection of parties, or create a new organization if no existing instance was found.- Parameters:
newValue
- the new organization name, ornull
if none.
-
organisation
Generates a new organization from the given name. -
getPositionName
Deprecated.As of ISO 19115:2014, replaced byDefaultIndividual.getPositionName()
.Returns the role or position of the responsible person Only one ofindividualName
,organisationName
andpositionName
shall be provided.This implementation returns the position of the first
Individual
found in the collection of parties. If no individual is found in the parties, then this method fallbacks on the first organisation member.- Specified by:
getPositionName
in interfaceorg.opengis.metadata.citation.ResponsibleParty
- Returns:
- role or position of the responsible person, or
null
-
setPositionName
Deprecated.As of ISO 19115:2014, replaced byDefaultIndividual.setPositionName(InternationalString)
.set the role or position of the responsible person Only one ofindividualName
,organisationName
andpositionName
shall be provided.This implementation sets the position name of the first
Individual
found in the collection of parties, or create a new individual if no existing instance was found.- Parameters:
newValue
- the new position name, ornull
if none.
-
position
Generates a new position from the given name. -
getContactInfo
Deprecated.As of ISO 19115:2014, replaced byAbstractParty.getContactInfo()
.Returns the address of the responsible party.This implementation returns the first non-null contact found in the collection of parties.
- Specified by:
getContactInfo
in interfaceorg.opengis.metadata.citation.ResponsibleParty
- Returns:
- address of the responsible party, or
null
.
-
setContactInfo
Deprecated.As of ISO 19115:2014, replaced byAbstractParty.setContactInfo(Collection)
.Sets the address of the responsible party.This implementation sets the contact info in the first party found in the collection of parties.
- Parameters:
newValue
- the new contact info, ornull
if none.
-
getRole
public org.opengis.metadata.citation.Role getRole()Returns the function performed by the responsible party.- Specified by:
getRole
in interfaceorg.opengis.metadata.citation.ResponsibleParty
- Overrides:
getRole
in classDefaultResponsibility
- 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.- Overrides:
setRole
in classDefaultResponsibility
- Parameters:
newValue
- the new role.
-
AbstractParty.getContactInfo()
.