Package com.feth.play.module.pa.user

Examples of com.feth.play.module.pa.user.AuthUserIdentity


    }
  }

  @Override
  public F.Promise<Subject> getSubject(final Http.Context context) {
    final AuthUserIdentity u = PlayAuthenticate.getUser(context);
    // Caching might be a good idea here
    return F.Promise.pure((Subject)User.findByAuthUserIdentity(u));
  }
View Full Code Here

TOP

Related Classes of com.feth.play.module.pa.user.AuthUserIdentity

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.