blob: 665b5dc90fdc36514e4a26967836c5edf2d8b96f [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.content;
import java.util.Collection;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import org.opengis.metadata.content.CoverageContentType;
import org.opengis.metadata.content.RangeDimension;
import org.apache.sis.metadata.iso.ISOMetadata;
// Branch-specific imports
import org.opengis.annotation.UML;
import static org.opengis.annotation.Obligation.OPTIONAL;
import static org.opengis.annotation.Obligation.MANDATORY;
import static org.opengis.annotation.Specification.ISO_19115;
/**
* Information about content type for groups of attributes for a specific
* {@linkplain DefaultRangeDimension range dimension}.
* The following property is mandatory in a well-formed metadata according ISO 19115:
*
* <div class="preformat">{@code MD_AttributeGroup}
* {@code   └─contentType……} Content type</div>
*
* <div class="warning"><b>Note on International Standard versions</b><br>
* 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 {@code AttributeGroup} interface.
* </div>
*
* <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)
* @author Cullen Rombach (Image Matters)
* @version 1.0
* @since 0.5
* @module
*/
@XmlType(name = "MD_AttributeGroup_Type", propOrder = {
"contentTypes",
"attributes"
})
@XmlRootElement(name = "MD_AttributeGroup")
@UML(identifier="MD_AttributeGroup", specification=ISO_19115)
public class DefaultAttributeGroup extends ISOMetadata {
/**
* Serial number for compatibility with different versions.
*/
private static final long serialVersionUID = -2198484393626051875L;
/**
* Type of information represented by the value(s).
*/
private Collection<CoverageContentType> contentTypes;
/**
* Content type for attributes groups for a {@link RangeDimension}.
*/
private Collection<RangeDimension> attributes;
/**
* Constructs an initially empty attribute group.
*/
public DefaultAttributeGroup() {
}
/**
* Constructs an attribute group initialized to the given values.
*
* @param contentType type of information represented by the value, or {@code null}.
* @param attribute the attribute, or {@code null}.
*/
public DefaultAttributeGroup(final CoverageContentType contentType, final RangeDimension attribute) {
contentTypes = singleton(contentType, CoverageContentType.class);
attributes = singleton(attribute, RangeDimension.class);
}
/**
* 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.
*/
public DefaultAttributeGroup(final DefaultAttributeGroup object) {
super(object);
if (object != null) {
contentTypes = copyCollection(object.getContentTypes(), CoverageContentType.class);
attributes = copyCollection(object.getAttributes(), RangeDimension.class);
}
}
/**
* Returns the types of information represented by the value(s).
*
* @return the types of information represented by the value(s).
*/
@XmlElement(name = "contentType", required = true)
@UML(identifier="contentType", obligation=MANDATORY, specification=ISO_19115)
public Collection<CoverageContentType> getContentTypes() {
return contentTypes = nonNullCollection(contentTypes, CoverageContentType.class);
}
/**
* Sets the types of information represented by the value(s).
*
* @param newValues the new types of information.
*/
public void setContentTypes(final Collection<? extends CoverageContentType> newValues) {
contentTypes = writeCollection(newValues, contentTypes, CoverageContentType.class);
}
/**
* Returns information on an attribute of the resource.
*
* @return information on an attribute of the resource.
*/
@XmlElement(name = "attribute")
@UML(identifier="attribute", obligation=OPTIONAL, specification=ISO_19115)
public Collection<RangeDimension> getAttributes() {
return attributes = nonNullCollection(attributes, RangeDimension.class);
}
/**
* Sets information on an attribute of the resource.
*
* @param newValues the new attributes.
*/
public void setAttributes(final Collection<? extends RangeDimension> newValues) {
attributes = writeCollection(newValues, attributes, RangeDimension.class);
}
}