Package org.orgama.shared.auth.model

Examples of org.orgama.shared.auth.model.AuthSourceInfo


  @Inject
  public FacebookAuthService(
      Provider<HttpServletRequest> requestProvider,
      IFacebookUserService userService) {
    this.requestProvider = requestProvider;
    authSourceInfo = new AuthSourceInfo("Facebook",
        AuthServiceName.facebook);
   
    this.userService = userService;
   
  }
View Full Code Here


 
  @Inject
  public GoogleAccountsAuthService(
      Provider<HttpServletRequest> requestProvider) {
    this.requestProvider = requestProvider;
    authSourceInfo = new AuthSourceInfo("Google Accounts",
        AuthServiceName.googleAccounts);
  }
View Full Code Here

TOP

Related Classes of org.orgama.shared.auth.model.AuthSourceInfo

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.