blob: 7136ec7669a23f9222e686e7fbbe79c2232c3a8c [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.net.URI;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import org.opengis.util.InternationalString;
import org.opengis.metadata.citation.OnLineFunction;
import org.opengis.metadata.citation.OnlineResource;
import org.apache.sis.xml.bind.gco.StringAdapter;
import org.apache.sis.xml.bind.gco.URIAdapter;
import org.apache.sis.metadata.iso.ISOMetadata;
/**
* Information about on-line sources from which the dataset, specification, or
* community profile name and extended metadata elements can be obtained.
* The following property is mandatory in a well-formed metadata according ISO 19115:
*
* <div class="preformat">{@code CI_OnlineResource}
* {@code   └─linkage………………} Location (address) for on-line access using a Uniform Resource Locator address or similar addressing scheme.</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 Martin Desruisseaux (IRD, Geomatys)
* @author Touraïvane (IRD)
* @author Cédric Briançon (Geomatys)
* @author Cullen Rombach (Image Matters)
* @version 1.4
* @since 0.3
*/
@XmlType(name = "CI_OnlineResource_Type", propOrder = {
"linkage",
"protocol",
"applicationProfile",
"name",
"description",
"function",
"protocolRequest"
})
@XmlRootElement(name = "CI_OnlineResource")
public class DefaultOnlineResource extends ISOMetadata implements OnlineResource {
/**
* Serial number for inter-operability with different versions.
*/
private static final long serialVersionUID = 2627991335953178610L;
/**
* Location (address) for on-line access using a Uniform Resource Locator address or
* similar addressing scheme such as "{@code http://www.statkart.no/isotc211}".
*/
private URI linkage;
/**
* The connection protocol to be used.
*/
private String protocol;
/**
* Name of an application profile that can be used with the online resource.
*/
private String applicationProfile;
/**
* Name of the online resources.
*/
@SuppressWarnings("serial")
private InternationalString name;
/**
* Detailed text description of what the online resource is/does.
*/
@SuppressWarnings("serial")
private InternationalString description;
/**
* Code for function performed by the online resource.
*/
private OnLineFunction function;
/**
* Request used to access the resource depending on the protocol.
* This is used mainly for POST requests.
*/
private String protocolRequest;
/**
* Creates an initially empty on line resource.
*/
public DefaultOnlineResource() {
}
/**
* Creates an on line resource initialized to the given URI.
*
* @param linkage the location for on-line access using a Uniform Resource Locator address,
* or {@code null} if none.
*/
public DefaultOnlineResource(final URI linkage) {
this.linkage = linkage;
}
/**
* 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(OnlineResource)
*/
public DefaultOnlineResource(final OnlineResource object) {
super(object);
if (object != null) {
linkage = object.getLinkage();
protocol = object.getProtocol();
applicationProfile = object.getApplicationProfile();
name = object.getName();
description = object.getDescription();
function = object.getFunction();
protocolRequest = object.getProtocolRequest();
}
}
/**
* 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 DefaultOnlineResource}, then it is returned unchanged.</li>
* <li>Otherwise a new {@code DefaultOnlineResource} instance is created using the
* {@linkplain #DefaultOnlineResource(OnlineResource) 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 DefaultOnlineResource castOrCopy(final OnlineResource object) {
if (object == null || object instanceof DefaultOnlineResource) {
return (DefaultOnlineResource) object;
}
return new DefaultOnlineResource(object);
}
/**
* Returns the name of an application profile that can be used with the online resource.
* Returns {@code null} if none.
*
* @return application profile that can be used with the online resource, or {@code null}.
*/
@Override
@XmlElement(name = "applicationProfile")
public String getApplicationProfile() {
return applicationProfile;
}
/**
* Sets the name of an application profile that can be used with the online resource.
*
* @param newValue the new application profile.
*/
public void setApplicationProfile(final String newValue) {
checkWritePermission(applicationProfile);
applicationProfile = newValue;
}
/**
* Name of the online resource. Returns {@code null} if none.
*
* @return name of the online resource, or {@code null}.
*/
@Override
@XmlElement(name = "name")
public InternationalString getName() {
return name;
}
/**
* Sets the name of the online resource.
*
* @param newValue the new name, or {@code null} if none.
*/
public void setName(final InternationalString newValue) {
checkWritePermission(name);
name = newValue;
}
/**
* Returns the detailed text description of what the online resource is/does.
*
* @return text description of what the online resource is/does, or {@code null}.
*/
@Override
@XmlElement(name = "description")
public InternationalString getDescription() {
return description;
}
/**
* Sets the detailed text description of what the online resource is/does.
*
* @param newValue the new description, or {@code null} if none.
*/
public void setDescription(final InternationalString newValue) {
checkWritePermission(description);
description = newValue;
}
/**
* Returns the code for function performed by the online resource.
*
* @return function performed by the online resource, or {@code null}.
*/
@Override
@XmlElement(name = "function")
public OnLineFunction getFunction() {
return function;
}
/**
* Sets the code for function performed by the online resource.
*
* @param newValue the new function, or {@code null} if none.
*/
public void setFunction(final OnLineFunction newValue) {
checkWritePermission(function);
function = newValue;
}
/**
* Returns the location (address) for on-line access using a Uniform Resource Locator address or
* similar addressing scheme.
*
* @return location for on-line access using a Uniform Resource Locator address or similar scheme, or {@code null}.
*/
@Override
@XmlElement(name = "linkage", required = true)
@XmlJavaTypeAdapter(URIAdapter.AsURL.class)
public URI getLinkage() {
return linkage;
}
/**
* Sets the location (address) for on-line access using a Uniform Resource Locator address or
* similar addressing scheme such as "{@code http://www.statkart.no/isotc211}".
*
* @param newValue the new linkage, or {@code null} if none.
*/
public void setLinkage(final URI newValue) {
checkWritePermission(linkage);
linkage = newValue;
}
/**
* Returns the connection protocol to be used.
*
* <h4>Examples</h4>
* ftp, http get KVP, http POST, <i>etc</i>.
*
* @return connection protocol to be used, or {@code null}.
*/
@Override
@XmlElement(name = "protocol")
public String getProtocol() {
return protocol;
}
/**
* Sets the connection protocol to be used.
*
* @param newValue the new protocol, or {@code null} if none.
*/
public void setProtocol(final String newValue) {
checkWritePermission(protocol);
protocol = newValue;
}
/**
* Returns the request used to access the resource depending on the protocol.
* This is used mainly for POST requests.
*
* <h4>Example</h4>
* {@snippet lang="xml" :
* <GetFeature service="WFS" version="2.0.0"
* outputFormat="application/gml+xml;verson=3.2"
* xmlns="(…snip…)">
* <Query typeNames="Roads"/>
* </GetFeature>
* }
*
* @return Request used to access the resource.
*
* @since 0.5
*/
@Override
@XmlElement(name = "protocolRequest")
@XmlJavaTypeAdapter(StringAdapter.Since2014.class)
public String getProtocolRequest() {
return protocolRequest;
}
/**
* Sets the request to be used.
*
* @param newValue the new request, or {@code null} if none.
*
* @since 0.5
*/
public void setProtocolRequest(final String newValue) {
checkWritePermission(protocolRequest);
protocolRequest = newValue;
}
}