blob: 14449fe2ff01736df2c1f05c2f4d447920265b17 [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 javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import org.opengis.metadata.citation.Contact;
import org.opengis.metadata.citation.Individual;
import org.opengis.util.InternationalString;
import org.apache.sis.util.iso.Types;
/**
* Information about the party if the party is an individual.
*
* <p><b>Limitations:</b></p>
* <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.0
* @since 0.5
* @module
*/
@XmlType(name = "CI_Individual_Type", propOrder = {
"positionName"
})
@XmlRootElement(name = "CI_Individual")
public class DefaultIndividual extends AbstractParty implements Individual {
/**
* Serial number for inter-operability with different versions.
*/
private static final long serialVersionUID = -5116802681895278739L;
/**
* Position of the individual in an organization.
*/
private InternationalString positionName;
/**
* Constructs an initially empty individual.
*/
public DefaultIndividual() {
}
/**
* Constructs an individual initialized to the specified values.
*
* @param name name of the individual.
* @param positionName position of the individual in an organization.
* @param contactInfo contact information for the individual.
*/
public DefaultIndividual(final CharSequence name,
final CharSequence positionName,
final Contact contactInfo)
{
super(name, contactInfo);
this.positionName = Types.toInternationalString(positionName);
}
/**
* Constructs a new instance initialized with the values from the specified metadata object.
* This is a <cite>shallow</cite> copy constructor, since 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(Individual)
*/
public DefaultIndividual(final Individual object) {
super(object);
if (object != null) {
positionName = object.getPositionName();
}
}
/**
* 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 already an instance of
* {@code DefaultIndividual}, then it is returned unchanged.</li>
* <li>Otherwise a new {@code DefaultIndividual} instance is created using the
* {@linkplain #DefaultIndividual(Individual) copy constructor}
* and returned. Note that this is a <cite>shallow</cite> copy operation, since 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 DefaultIndividual castOrCopy(final Individual object) {
if (object == null || object instanceof DefaultIndividual) {
return (DefaultIndividual) object;
}
return new DefaultIndividual(object);
}
/**
* Returns position of the individual in an organization, or {@code null} if none.
*
* @return position of the individual in an organization, or {@code null} if none.
*/
@Override
@XmlElement(name = "positionName")
public InternationalString getPositionName() {
return positionName;
}
/**
* Sets a new position of the individual in an organization.
*
* @param newValue the new position of the individual in an organization.
*/
public void setPositionName(final InternationalString newValue) {
checkWritePermission(positionName);
positionName = newValue;
}
}