Examples of VerifyTokenResponse


Examples of org.surfnet.oaaas.model.VerifyTokenResponse

   */
  @GET
  @Path("/principal")
  public Response principal(@Context
                        HttpServletRequest request) {
    VerifyTokenResponse verifyTokenResponse = (VerifyTokenResponse) request.getAttribute(AuthorizationServerFilter.VERIFY_TOKEN_RESPONSE);
    return Response.ok(verifyTokenResponse.getPrincipal()).build();
  }
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.