Apache CXF API

org.apache.cxf.rs.security.oauth.data
Class AuthorizationInput

java.lang.Object
  extended by org.apache.cxf.rs.security.oauth.data.AuthorizationInput

public class AuthorizationInput
extends Object

Represents the user approval of the client RequestToken. It also contains the set of approved scopes which may be more restricted than the original list requested by the client


Constructor Summary
AuthorizationInput()
           
 
Method Summary
 List<OAuthPermission> getApprovedScopes()
           
 RequestToken getToken()
           
 void setApprovedScopes(List<OAuthPermission> approvedScopes)
           
 void setToken(RequestToken token)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AuthorizationInput

public AuthorizationInput()
Method Detail

setToken

public void setToken(RequestToken token)

getToken

public RequestToken getToken()

setApprovedScopes

public void setApprovedScopes(List<OAuthPermission> approvedScopes)

getApprovedScopes

public List<OAuthPermission> getApprovedScopes()

Apache CXF API

Apache CXF