Examples of fromConfiguration()


Examples of org.codehaus.plexus.component.configurator.converters.composite.MapConverter.fromConfiguration()

                "This configurator can only process implementations of " + MapOrientedComponent.class.getName() );
        }

        MapConverter converter = new MapConverter();

        Map context = (Map) converter.fromConfiguration( converterLookup, configuration, null, null,
                                                         containerRealm.getClassLoader(), expressionEvaluator,
                                                         listener );

        ( (MapOrientedComponent) component ).setComponentConfiguration( context );
    }
View Full Code Here

Examples of org.codehaus.plexus.component.configurator.converters.composite.MapConverter.fromConfiguration()

        if ( configuration != null )
        {
            try
            {
                Map context = (Map) converter.fromConfiguration(converterLookup,
                                                                configuration,
                                                                null,
                                                                null,
                                                                realm,
                                                                expressionEvaluator,
View Full Code Here

Examples of org.codehaus.plexus.component.configurator.converters.composite.MapConverter.fromConfiguration()

        DefaultExpressionEvaluator expressionEvaluator = new DefaultExpressionEvaluator();
        PlexusConfiguration configuration = container.getConfigurationSource().getConfiguration( descriptor );

        if ( configuration != null )
        {
            Map context = (Map) converter.fromConfiguration(converterLookup,
                                                            configuration,
                                                            null,
                                                            null,
                                                            realm,
                                                            expressionEvaluator,
View Full Code Here

Examples of org.codehaus.plexus.component.configurator.converters.composite.MapConverter.fromConfiguration()

        DefaultExpressionEvaluator expressionEvaluator = new DefaultExpressionEvaluator();
        PlexusConfiguration configuration = container.getConfigurationSource().getConfiguration( descriptor );

        if ( configuration != null )
        {
            Map context = (Map) converter.fromConfiguration(converterLookup,
                                                            configuration,
                                                            null,
                                                            null,
                                                            realm,
                                                            expressionEvaluator,
View Full Code Here

Examples of org.codehaus.plexus.component.configurator.converters.composite.MapConverter.fromConfiguration()

                "This configurator can only process implementations of " + MapOrientedComponent.class.getName() );
        }

        MapConverter converter = new MapConverter();

        Map context = (Map) converter.fromConfiguration( converterLookup, configuration, null, null,
                                                         containerRealm, expressionEvaluator,
                                                         listener );

        ( (MapOrientedComponent) component ).setComponentConfiguration( context );
    }
View Full Code Here
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.