Package org.apache.cocoon.forms.util

Examples of org.apache.cocoon.forms.util.SimpleServiceSelector


    throws ConfigurationException {
        this.configuration = configuration;
    }

    public void initialize() throws Exception {
        bindingBuilderSelector = new SimpleServiceSelector("binding", JXPathBindingBuilderBase.class);
        LifecycleHelper.setupComponent(bindingBuilderSelector,
                                       getLogger(),
                                       this.avalonContext,
                                       this.manager,
                                       configuration.getChild("bindings"));
View Full Code Here


    public void contextualize(Context context) throws ContextException {
        this.context = context;
    }

    public void configure(Configuration configuration) throws ConfigurationException {
        convertorBuilders = new SimpleServiceSelector("convertor", ConvertorBuilder.class);
        try {
            convertorBuilders.enableLogging(getLogger());
            convertorBuilders.contextualize(context);
            convertorBuilders.service(serviceManager);
        } catch (Exception e) {
View Full Code Here

TOP

Related Classes of org.apache.cocoon.forms.util.SimpleServiceSelector

Copyright © 2018 www.massapicom. 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.