Package org.jboss.seam.security.external.openid

Source Code of org.jboss.seam.security.external.openid.OpenIdConsumerManagerFactory

package org.jboss.seam.security.external.openid;

import javax.enterprise.context.ApplicationScoped;
import javax.enterprise.inject.Produces;
import javax.inject.Inject;

import org.openid4java.consumer.ConsumerManager;

/**
* @author Marcel Kolsteren
*
*/
@ApplicationScoped
public class OpenIdConsumerManagerFactory
{
   private ConsumerManager consumerManager;

   @Produces
   public ConsumerManager getConsumerManager()
   {
      return consumerManager;
   }

   @Inject
   public void startup() throws Exception
   {
      consumerManager = new ConsumerManager();
   }
}
TOP

Related Classes of org.jboss.seam.security.external.openid.OpenIdConsumerManagerFactory

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.