Package org.geoserver.wps.xml

Source Code of org.geoserver.wps.xml.WPSConfiguration

/* Copyright (c) 2001 - 2007 TOPP - www.openplans.org. All rights reserved.
* This code is licensed under the GPL 2.0 license, available at the root
* application directory.
*/
package org.geoserver.wps.xml;

import java.util.Map;

import org.geoserver.wcs.xml.v1_1_1.WCSParserDelegate;
import org.geotools.wps.WPS;
import org.picocontainer.MutablePicoContainer;

public class WPSConfiguration extends org.geotools.wps.WPSConfiguration {

    protected void registerBindings(Map bindings) {
        super.registerBindings(bindings);
       
        //binding overrides
        bindings.put( WPS.ComplexDataType, ComplexDataTypeBinding.class );
    }
   
    @Override
    protected void configureContext(MutablePicoContainer container) {
        super.configureContext(container);

        container.registerComponentInstance(new WCSParserDelegate());
    }
}
TOP

Related Classes of org.geoserver.wps.xml.WPSConfiguration

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.