org.n52.svalbard.encode.AbstractSosRequestEncoder Maven / Gradle / Ivy
/*
* Copyright 2015-2020 52°North Initiative for Geospatial Open Source
* Software GmbH
*
* Licensed 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.n52.svalbard.encode;
import java.util.Collections;
import java.util.Set;
import org.apache.xmlbeans.XmlObject;
import org.n52.shetland.ogc.filter.FilterConstants;
import org.n52.shetland.ogc.gml.GmlConstants;
import org.n52.shetland.ogc.ows.OWSConstants;
import org.n52.shetland.ogc.ows.service.OwsServiceRequest;
import org.n52.shetland.ogc.sos.Sos2Constants;
import org.n52.shetland.ogc.sos.SosConstants;
import org.n52.shetland.ogc.swe.SweConstants;
import org.n52.shetland.w3c.SchemaLocation;
import org.n52.svalbard.encode.exception.EncodingException;
/**
* @author Carsten Hollmann
* @since 5.0.0
*
* @param
* the request type
*/
public abstract class AbstractSosRequestEncoder extends AbstractRequestEncoder {
public AbstractSosRequestEncoder(String operation, Class responseType) {
super(SosConstants.SOS, Sos2Constants.SERVICEVERSION, operation, Sos2Constants.NS_SOS_20,
SosConstants.NS_SOS_PREFIX, responseType);
}
@Override
public Set getSchemaLocations() {
return Collections.singleton(Sos2Constants.SOS_SCHEMA_LOCATION);
}
protected XmlObject encodeGml(Object o) throws EncodingException {
return encodeObjectToXml(GmlConstants.NS_GML_32, o);
}
protected XmlObject encodeGml(EncodingContext context, Object o) throws EncodingException {
return encodeObjectToXml(GmlConstants.NS_GML_32, o, context);
}
protected XmlObject encodeOws(Object o) throws EncodingException {
return encodeObjectToXml(OWSConstants.NS_OWS, o);
}
protected XmlObject encodeOws(EncodingContext context, Object o) throws EncodingException {
return encodeObjectToXml(OWSConstants.NS_OWS, o, context);
}
protected XmlObject encodeFes(Object o) throws EncodingException {
return encodeObjectToXml(FilterConstants.NS_FES_2, o);
}
protected XmlObject encodeFes(EncodingContext context, Object o) throws EncodingException {
return encodeObjectToXml(FilterConstants.NS_FES_2, o, context);
}
protected XmlObject encodeSwe(Object o) throws EncodingException {
return encodeObjectToXml(SweConstants.NS_SWE_20, o);
}
protected XmlObject encodeSwe(EncodingContext context, Object o) throws EncodingException {
return encodeObjectToXml(SweConstants.NS_SWE_20, o, context);
}
}