Examples of FederationService


Examples of org.wildfly.extension.picketlink.federation.service.FederationService

        launchServices(operation, pathAddress, context, verificationHandler, newControllers);
    }

    void launchServices(ModelNode operation, PathAddress pathAddress, OperationContext context, ServiceVerificationHandler verificationHandler, List<ServiceController<?>> newControllers) {
        String alias = pathAddress.getLastElement().getValue();
        FederationService service = new FederationService(alias);
        ServiceBuilder<FederationService> serviceBuilder = context.getServiceTarget().addService(FederationService.createServiceName(alias), service);

        serviceBuilder.addDependency(UndertowService.UNDERTOW);

        if (verificationHandler != null) {
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.