Package org.jboss.identity.federation.api.wstrust

Examples of org.jboss.identity.federation.api.wstrust.WSTrustServiceFactory


      // build the token-provider and service-metadata maps.
      TokenProvidersType providers = this.delegate.getTokenProviders();
      if (providers != null)
      {
         WSTrustServiceFactory serviceFactory = WSTrustServiceFactory.getInstance();
         for (TokenProviderType provider : providers.getTokenProvider())
         {
            this.tokenProviders.put(provider.getTokenType(), serviceFactory.createTokenProvider(provider
                  .getProviderClass()));
         }
      }
      ServiceProvidersType serviceProviders = this.delegate.getServiceProviders();
      if (serviceProviders != null)
View Full Code Here

TOP

Related Classes of org.jboss.identity.federation.api.wstrust.WSTrustServiceFactory

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.