Package org.apache.tuscany.core.system.config

Examples of org.apache.tuscany.core.system.config.SystemObjectContextFactory


        setAutowireContext(autowire);
        scopeIndex = new ConcurrentHashMap<String, ScopeContext>();
    }

    public void registerJavaObject(String componentName, Class<?> service, Object instance) throws ConfigurationException {
        SystemObjectContextFactory configuration = new SystemObjectContextFactory(componentName, instance);
        registerConfiguration(configuration);
        ScopeContext scope = scopeContexts.get(configuration.getScope());
        registerAutowireInternal(service, componentName, scope);
    }
View Full Code Here

TOP

Related Classes of org.apache.tuscany.core.system.config.SystemObjectContextFactory

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.