Details
-
Improvement
-
Status: Resolved
-
Major
-
Resolution: Invalid
-
None
-
None
-
None
Description
How to return resource from resource server to client? In OAuthASResponse there are OAuthTokenResponseBuilder and OAuthAuthorizationResponseBuilder inner class.Using that inner class i am unable to send my json resource to client from ResourceEndpoint.As,there is not setter method to set for my json resource.
OAuthResponse response = OAuthASResponse.setResource(json)
.buildJSONMessage();
OAuthASResponse.setResource(json)// this is what i needed
so that from client i can easily retrieve as
oar=OAuthAuthzResponse.oauthCodeAuthzResponse(request);
String json= oar.getResource(); // my json string .This is what i need in client.
So,i am trying to extend it.But,inner class being used i am unable to do it?Is
there way to extend OAuthASResponse so that i can set for resource and retrieve that from client?