Package org.apache.sling.discovery.impl.cluster.voting

Examples of org.apache.sling.discovery.impl.cluster.voting.VotingHandler


    }

    public static VotingHandler createVotingHandler(String slingId,
            ResourceResolverFactory resourceResolverFactory, Config config)
            throws Exception {
        VotingHandler votingHandler = new VotingHandler();
        PrivateAccessor.setField(votingHandler, "slingSettingsService",
                MockFactory.mockSlingSettingsService(slingId));
        PrivateAccessor.setField(votingHandler, "resolverFactory",
                resourceResolverFactory);
        PrivateAccessor.setField(votingHandler, "config", config);
View Full Code Here

TOP

Related Classes of org.apache.sling.discovery.impl.cluster.voting.VotingHandler

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.