components.operation-decoders.xml Maven / Gradle / Ivy
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright 2016-2019 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. --> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:util="http://www.springframework.org/schema/util" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.1.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.1.xsd"> <!-- generic streaming decoder for every request --> <bean class="org.n52.svalbard.decode.stream.xml.XmlStreamingOperationDecoder"> <constructor-arg name="operation"> <!-- same as #getCapabilitiesOperation, but without version --> <bean class="org.n52.shetland.ogc.ows.service.OwsOperationKey"> <constructor-arg name="service" value="WPS" /> <constructor-arg name="version"><null/></constructor-arg> <constructor-arg name="operation" value="GetCapabilities" /> </bean> </constructor-arg> <constructor-arg name="name" ref="getCapabilitiesQName" /> </bean> <bean class="org.n52.svalbard.decode.stream.xml.XmlStreamingOperationDecoder"> <constructor-arg name="operation" ref="describeProcessOperation"/> <constructor-arg name="name" ref="describeProcessQName" /> </bean> <bean class="org.n52.svalbard.decode.stream.xml.XmlStreamingOperationDecoder"> <constructor-arg name="operation" ref="executeOperation"/> <constructor-arg name="name" ref="executeQName" /> </bean> <bean class="org.n52.svalbard.decode.stream.xml.XmlStreamingOperationDecoder"> <constructor-arg name="operation" ref="getResultOperation"/> <constructor-arg name="name" ref="getResultQName" /> </bean> <bean class="org.n52.svalbard.decode.stream.xml.XmlStreamingOperationDecoder"> <constructor-arg name="operation" ref="dismissOperation"/> <constructor-arg name="name" ref="dismissQName" /> </bean> <bean class="org.n52.svalbard.decode.stream.xml.XmlStreamingOperationDecoder"> <constructor-arg name="operation" ref="getStatusOperation"/> <constructor-arg name="name" ref="getStatusQName" /> </bean> </beans>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy