001/*
002 *    GeoAPI - Java interfaces for OGC/ISO standards
003 *    Copyright © 2004-2024 Open Geospatial Consortium, Inc.
004 *    http://www.geoapi.org
005 *
006 *    Licensed under the Apache License, Version 2.0 (the "License");
007 *    you may not use this file except in compliance with the License.
008 *    You may obtain a copy of the License at
009 *
010 *        http://www.apache.org/licenses/LICENSE-2.0
011 *
012 *    Unless required by applicable law or agreed to in writing, software
013 *    distributed under the License is distributed on an "AS IS" BASIS,
014 *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
015 *    See the License for the specific language governing permissions and
016 *    limitations under the License.
017 */
018package org.opengis.metadata.citation;
019
020import org.opengis.util.InternationalString;
021import org.opengis.annotation.UML;
022import org.opengis.annotation.Profile;
023import org.opengis.annotation.Classifier;
024import org.opengis.annotation.Stereotype;
025
026import static org.opengis.annotation.Obligation.*;
027import static org.opengis.annotation.Specification.*;
028import static org.opengis.annotation.ComplianceLevel.*;
029
030
031/**
032 * Identification of, and means of communication with, person(s) and
033 * organizations associated with the dataset.
034 * At least one of {@link #getIndividualName() individual name}, {@linkplain #getOrganisationName()
035 * organisation name} and {@linkplain #getPositionName() position name} shall be provided.
036 *
037 * <div class="warning"><b>Upcoming API change — deprecation</b><br>
038 * As of ISO 19115:2014, the {@code ResponsibleParty} type has been replaced by {@link Responsibility}
039 * to allow more flexible associations of individuals, organisations, and roles.
040 * This {@code ResponsibleParty} interface will be deprecated in GeoAPI 4.0.
041 * </div>
042 *
043 * @author  Martin Desruisseaux (IRD)
044 * @version 3.1
045 * @since   1.0
046 */
047@Deprecated(since="3.1")
048@Classifier(Stereotype.DATATYPE)
049@UML(identifier="CI_ResponsibleParty", specification=ISO_19115, version=2003)
050public interface ResponsibleParty extends Responsibility {
051    /**
052     * Name of the responsible person- surname, given name, title separated by a delimiter.
053     *
054     * @return name, surname, given name and title of the responsible person, or {@code null}.
055     *
056     * @condition Mandatory if the {@linkplain #getOrganisationName() organisation name} and
057     *            {@linkplain #getPositionName() position name} are not documented.
058     *
059     * @deprecated As of ISO 19115:2014, replaced by {@code getName()} in {@link Individual}.
060     */
061    @Profile(level=CORE)
062    @Deprecated(since="3.1")
063    @UML(identifier="individualName", obligation=CONDITIONAL, specification=ISO_19115, version=2003)
064    String getIndividualName();
065
066    /**
067     * Name of the responsible organization.
068     *
069     * @return name of the responsible organization, or {@code null}.
070     *
071     * @condition Mandatory if the {@linkplain #getIndividualName() individual name} and
072     *            {@linkplain #getPositionName() position name} are not documented.
073     *
074     * @deprecated As of ISO 19115:2014, replaced by {@code getName()} in {@link Organisation}.
075     */
076    @Profile(level=CORE)
077    @Deprecated(since="3.1")
078    @UML(identifier="organisationName", obligation=CONDITIONAL, specification=ISO_19115, version=2003)
079    InternationalString getOrganisationName();
080
081    /**
082     * Role or position of the responsible person.
083     *
084     * @return role or position of the responsible person, or {@code null}
085     *
086     * @condition Mandatory if the {@linkplain #getIndividualName() individual name} and
087     *            {@linkplain #getOrganisationName() organisation name} are not documented.
088     *
089     * @deprecated As of ISO 19115:2014, replaced by {@link Individual#getPositionName()}.
090     */
091    @Profile(level=CORE)
092    @Deprecated(since="3.1")
093    @UML(identifier="positionName", obligation=CONDITIONAL, specification=ISO_19115, version=2003)
094    InternationalString getPositionName();
095
096    /**
097     * Address of the responsible party.
098     *
099     * @return address of the responsible party, or {@code null}.
100     *
101     * @deprecated As of ISO 19115:2014, replaced by {@link Party#getContactInfo()}.
102     */
103    @Deprecated(since="3.1")
104    @UML(identifier="contactInfo", obligation=OPTIONAL, specification=ISO_19115, version=2003)
105    Contact getContactInfo();
106
107    /**
108     * Function performed by the responsible party.
109     *
110     * @return function performed by the responsible party.
111     */
112    // No explicit @Deprecation because the inherited Responsibility.getRole() method is not deprecated.
113    @Override
114    @Profile(level=CORE)
115    @UML(identifier="role", obligation=MANDATORY, specification=ISO_19115)
116    Role getRole();
117}