blob: e26fbf5af289436b71fbc777a26791d3e47e7baf [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.xml.bind.referencing;
import jakarta.xml.bind.annotation.XmlElement;
import org.opengis.referencing.datum.TemporalDatum;
import org.apache.sis.xml.bind.gco.PropertyType;
import org.apache.sis.referencing.datum.DefaultTemporalDatum;
/**
* JAXB adapter mapping implementing class to the GeoAPI interface. See
* package documentation for more information about JAXB and interface.
*
* @author Cédric Briançon (Geomatys)
* @author Martin Desruisseaux (Geomatys)
*/
public final class CD_TemporalDatum extends PropertyType<CD_TemporalDatum, TemporalDatum> {
/**
* Empty constructor for JAXB only.
*/
public CD_TemporalDatum() {
}
/**
* Returns the GeoAPI interface which is bound by this adapter.
* This method is indirectly invoked by the private constructor
* below, so it shall not depend on the state of this object.
*
* @return {@code TemporalDatum.class}
*/
@Override
protected Class<TemporalDatum> getBoundType() {
return TemporalDatum.class;
}
/**
* Constructor for the {@link #wrap} method only.
*/
private CD_TemporalDatum(final TemporalDatum datum) {
super(datum);
}
/**
* Invoked by {@link PropertyType} at marshalling time for wrapping the given value
* in a {@code <gml:TemporalDatum>} XML element.
*
* @param datum the element to marshal.
* @return a {@code PropertyType} wrapping the given the element.
*/
@Override
protected CD_TemporalDatum wrap(final TemporalDatum datum) {
return new CD_TemporalDatum(datum);
}
/**
* Invoked by JAXB at marshalling time for getting the actual element to write
* inside the {@code <gml:TemporalDatum>} XML element.
* This is the value or a copy of the value given in argument to the {@code wrap} method.
*
* @return the element to be marshalled.
*/
@XmlElement(name = "TemporalDatum")
public DefaultTemporalDatum getElement() {
return DefaultTemporalDatum.castOrCopy(metadata);
}
/**
* Invoked by JAXB at unmarshalling time for storing the result temporarily.
*
* @param datum the unmarshalled element.
*/
public void setElement(final DefaultTemporalDatum datum) {
metadata = datum;
if (datum.getOrigin() == null) incomplete("origin");
}
}