Uses of Class
org.oa4mp.delegation.common.storage.clients.Client
-
Packages that use Client Package Description org.oa4mp.delegation.client org.oa4mp.delegation.client.request org.oa4mp.delegation.common.storage.clients org.oa4mp.delegation.server This package contains the code that a server will use to implement its delegation abilities.org.oa4mp.delegation.server.client org.oa4mp.delegation.server.request org.oa4mp.delegation.server.server org.oa4mp.delegation.server.storage org.oa4mp.delegation.server.storage.impl -
-
Uses of Client in org.oa4mp.delegation.client
Methods in org.oa4mp.delegation.client with parameters of type Client Modifier and Type Method Description protected ATResponse
DelegationService. getAT(AuthorizationGrant grant, Client client, Map<String,String> parameters)
DelegatedAssetResponse
DelegationService. getCert(ATResponse atResponse, Client client, Map<String,Object> assetParameters)
-
Uses of Client in org.oa4mp.delegation.client.request
Methods in org.oa4mp.delegation.client.request that return Client Modifier and Type Method Description Client
BasicRequest. getClient()
The client that is making this request.Methods in org.oa4mp.delegation.client.request with parameters of type Client Modifier and Type Method Description void
BasicRequest. setClient(Client client)
Constructors in org.oa4mp.delegation.client.request with parameters of type Client Constructor Description BasicRequest(Client client, Map<String,String> parameters, String keyID)
RFC6749_4_4Request(Client client, Map<String,String> parameters, String keyID)
RFC7523Request(Client client, String kid, Map<String,String> parameters)
RTRequest(Client client, String kid, Map<String,String> parameters)
-
Uses of Client in org.oa4mp.delegation.common.storage.clients
Classes in org.oa4mp.delegation.common.storage.clients with type parameters of type Client Modifier and Type Class Description class
ClientConverter<V extends Client>
Created by Jeff Gaynor
on 4/13/12 at 3:48 PMclass
ClientProvider<V extends Client>
Created by Jeff Gaynor
on 4/4/12 at 2:54 PMMethods in org.oa4mp.delegation.common.storage.clients that return Client Modifier and Type Method Description Client
Client. clone()
-
Uses of Client in org.oa4mp.delegation.server
Methods in org.oa4mp.delegation.server that return Client Modifier and Type Method Description Client
ExceptionWrapper. getClient()
Client
ServiceTransaction. getClient()
Methods in org.oa4mp.delegation.server with parameters of type Client Modifier and Type Method Description void
ExceptionWrapper. setClient(Client client)
void
ServiceTransaction. setClient(Client client)
void
UnapprovedClientException. setClient(Client client)
Constructors in org.oa4mp.delegation.server with parameters of type Client Constructor Description ExceptionWrapper(Throwable cause, Client client)
-
Uses of Client in org.oa4mp.delegation.server.client
Methods in org.oa4mp.delegation.server.client with parameters of type Client Modifier and Type Method Description protected static net.sf.json.JSONObject
RFC7523Utils. createBasicJWT(Client client)
Every basic JWT has the same structure.static String
RFC7523Utils. doPost(edu.uiuc.ncsa.security.servlet.ServiceClient serviceClient, Client oa2Client, URI accessTokenEndpoint, String keyID, Map parameters)
Does a POST to the endpoint using the client's key.static String
RFC7523Utils. doTokenRequest(edu.uiuc.ncsa.security.servlet.ServiceClient serviceClient, Client client, URI tokenEndpoint, String kid, Map parameters)
Creates an authorization grant for the client as per RFC 7523 section 2.1.protected static edu.uiuc.ncsa.security.util.jwk.JSONWebKey
RFC7523Utils. findKey(Client client, String kid)
protected PAResponse
PAServer2. getAsset(Client client, Map props, AccessToken accessToken)
Gets asset -
Uses of Client in org.oa4mp.delegation.server.request
Methods in org.oa4mp.delegation.server.request that return Client Modifier and Type Method Description Client
IssuerRequest. getClient()
-
Uses of Client in org.oa4mp.delegation.server.server
Methods in org.oa4mp.delegation.server.server that return Client Modifier and Type Method Description Client
AGIResponse2. getClient()
-
Uses of Client in org.oa4mp.delegation.server.storage
Classes in org.oa4mp.delegation.server.storage with type parameters of type Client Modifier and Type Interface Description interface
ClientStore<V extends Client>
Marker interface for client stores -
Uses of Client in org.oa4mp.delegation.server.storage.impl
Classes in org.oa4mp.delegation.server.storage.impl with type parameters of type Client Modifier and Type Class Description class
ClientMemoryStore<V extends Client>
Abstract class that gets the inheritance and generics right.class
FSClientStore<V extends Client>
File-based storage for clients.
-