blob: 143fe50b98b2e12d52bd10c022c062239b1bf052 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.sis.metadata.iso.citation;
import java.util.Collection;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlSeeAlso;
import org.opengis.util.InternationalString;
import org.opengis.metadata.Identifier;
import org.opengis.metadata.citation.Contact;
import org.apache.sis.metadata.TitleProperty;
import org.apache.sis.metadata.iso.ISOMetadata;
import org.apache.sis.util.iso.Types;
import org.apache.sis.xml.IdentifierSpace;
import org.apache.sis.xml.bind.NonMarshalledAuthority;
// Specific to the geoapi-3.1 and geoapi-4.0 branches:
import org.opengis.metadata.citation.Individual;
import org.opengis.metadata.citation.Organisation;
import org.opengis.metadata.citation.Party;
/**
* Information about the individual and / or organization of the party.
* The following property is conditional (i.e. mandatory under some circumstances)
* in a well-formed metadata according ISO 19115:
*
* <div class="preformat">{@code CI_Party}
* {@code   └─name……} Name of the party.</div>
*
* <h2>Limitations</h2>
* <ul>
* <li>Instances of this class are not synchronized for multi-threading.
* Synchronization, if needed, is caller's responsibility.</li>
* <li>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 {@link org.apache.sis.xml.XML} instead.</li>
* </ul>
*
* @author Rémi Maréchal (Geomatys)
* @author Martin Desruisseaux (Geomatys)
* @version 1.4
* @since 0.5
*/
@TitleProperty(name = "name")
@XmlType(name = "AbstractCI_Party_Type", propOrder = {
"name",
"contactInfo",
"identifiers"
})
@XmlRootElement(name = "AbstractCI_Party")
@XmlSeeAlso({
DefaultIndividual.class,
DefaultOrganisation.class
})
public class AbstractParty extends ISOMetadata implements Party {
/**
* Serial number for compatibility with different versions.
*/
private static final long serialVersionUID = 1486981243884830979L;
/**
* Name of the party.
*/
@SuppressWarnings("serial")
private InternationalString name;
/**
* Contact information for the party.
*/
@SuppressWarnings("serial")
private Collection<Contact> contactInfo;
/**
* Constructs an initially empty party.
*/
public AbstractParty() {
}
/**
* Constructs a party initialized with the specified name and contact information.
*
* @param name name of the party, or {@code null} if none.
* @param contactInfo contact information for the party, or {@code null} if none.
*/
public AbstractParty(final CharSequence name, final Contact contactInfo) {
this.name = Types.toInternationalString(name);
this.contactInfo = singleton(contactInfo, Contact.class);
}
/**
* Constructs a new instance initialized with the values from the specified metadata object.
* This is a <em>shallow</em> copy constructor, because the other metadata contained in the
* given object are not recursively copied.
*
* @param object the metadata to copy values from, or {@code null} if none.
*
* @see #castOrCopy(Party)
*/
public AbstractParty(final Party object) {
super(object);
if (object != null) {
name = object.getName();
contactInfo = copyList(object.getContactInfo(), Contact.class);
}
}
/**
* Returns a SIS metadata implementation with the values of the given arbitrary implementation.
* This method performs the first applicable action in the following choices:
*
* <ul>
* <li>If the given object is {@code null}, then this method returns {@code null}.</li>
* <li>Otherwise if the given object is an instance of {@link Individual} or {@link Organisation},
* then this method delegates to the {@code castOrCopy(…)} method of the corresponding SIS subclass.
* Note that if the given object implements more than one of the above-cited interfaces,
* then the {@code castOrCopy(…)} method to be used is unspecified.</li>
* <li>Otherwise if the given object is already an instance of
* {@code AbstractParty}, then it is returned unchanged.</li>
* <li>Otherwise a new {@code AbstractParty} instance is created using the
* {@linkplain #AbstractParty(Party) copy constructor} and returned.
* Note that this is a <em>shallow</em> copy operation, because the other
* metadata contained in the given object are not recursively copied.</li>
* </ul>
*
* @param object the object to get as a SIS implementation, or {@code null} if none.
* @return a SIS implementation containing the values of the given object (may be the
* given object itself), or {@code null} if the argument was null.
*/
public static AbstractParty castOrCopy(final Party object) {
if (object instanceof Individual) {
return DefaultIndividual.castOrCopy((Individual) object);
}
if (object instanceof Organisation) {
return DefaultOrganisation.castOrCopy((Organisation) object);
}
if (object == null || object instanceof AbstractParty) {
return (AbstractParty) object;
}
return new AbstractParty(object);
}
/**
* Return the name of the party.
*
* @return name of the party.
*/
@Override
@XmlElement(name = "name")
public InternationalString getName() {
return name;
}
/**
* Sets the name of the party.
*
* @param newValue the new name of the party.
*/
public void setName(final InternationalString newValue) {
checkWritePermission(name);
name = newValue;
}
/**
* Identifiers of the party.
*
* <h4>Unified identifiers view</h4>
* In this SIS implementation, the collection returned by this method includes the XML identifiers
* ({@linkplain IdentifierSpace#ID ID}, {@linkplain IdentifierSpace#UUID UUID}, <i>etc.</i>),
* thus providing a unified view of every kind of identifiers associated to this party.
*
* <h4>XML marshalling note</h4>
* The {@code <mac:identifier>} element marshalled to XML will exclude all the above cited identifiers,
* for compliance with ISO 19115 model. Those identifiers will appear in other XML elements or attributes.
*
* @return identifiers of the party, or an empty collection if none.
*
* @since 1.3
*/
@Override
@XmlElement(name = "partyIdentifier")
public Collection<Identifier> getIdentifiers() {
return NonMarshalledAuthority.filterOnMarshalling(super.getIdentifiers());
}
/**
* Sets the identifiers of the party.
*
* <p>XML identifiers ({@linkplain IdentifierSpace#ID ID}, {@linkplain IdentifierSpace#UUID UUID}, <i>etc.</i>),
* are not affected by this method, unless they are explicitly provided in the given collection.</p>
*
* @param newValues the new identifiers values.
*
* @since 1.3
*/
public void setIdentifiers(Collection<? extends Identifier> newValues) {
newValues = NonMarshalledAuthority.setMarshallables(identifiers, newValues);
identifiers = writeCollection(newValues, identifiers, Identifier.class);
}
/**
* Returns the contact information for the party.
*
* @return contact information for the party.
*/
@Override
@XmlElement(name = "contactInfo")
public Collection<Contact> getContactInfo() {
return contactInfo = nonNullCollection(contactInfo, Contact.class);
}
/**
* Sets the contact information for the party.
*
* @param newValues the new contact information for the party.
*/
public void setContactInfo(final Collection<? extends Contact> newValues) {
contactInfo = writeCollection(newValues, contactInfo, Contact.class);
}
}