Package org.apache.ace.client.repository.stateful.impl

Examples of org.apache.ace.client.repository.stateful.impl.StatefulGatewayRepositoryImpl


            DeploymentVersionObject.TOPIC_ALL,
            RepositoryAdmin.TOPIC_REFRESH, RepositoryAdmin.TOPIC_LOGIN});
        String filter = "(" + SessionFactory.SERVICE_SID + "=" + sessionID + ")";
        topic.put(EventConstants.EVENT_FILTER, filter);
        topic.put(SessionFactory.SERVICE_SID, sessionID);
        StatefulGatewayRepositoryImpl statefulGatewayRepositoryImpl = new StatefulGatewayRepositoryImpl(sessionID);
        sd.m_service2 = createComponent()
            .setInterface(new String[] { StatefulGatewayRepository.class.getName(), EventHandler.class.getName() }, topic)
            .setImplementation(statefulGatewayRepositoryImpl)
            .add(createServiceDependency().setService(ArtifactRepository.class, filter).setRequired(true))
            .add(createServiceDependency().setService(GatewayRepository.class, filter).setRequired(true))
View Full Code Here

TOP

Related Classes of org.apache.ace.client.repository.stateful.impl.StatefulGatewayRepositoryImpl

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.