Uses of Class
org.oa4mp.delegation.common.token.impl.TokenImpl
-
Packages that use TokenImpl Package Description org.oa4mp.client.loader org.oa4mp.delegation.common.token.impl org.oa4mp.delegation.server This package contains the code that a server will use to implement its delegation abilities.org.oa4mp.delegation.server.jwt org.oa4mp.server.admin.oauth2.tools org.oa4mp.server.loader.oauth2.claims org.oa4mp.server.loader.oauth2.storage org.oa4mp.server.qdl -
-
Uses of TokenImpl in org.oa4mp.client.loader
Methods in org.oa4mp.client.loader that return TokenImpl Modifier and Type Method Description protected TokenImpl
OA2MPService. figureOutToken(String rawToken, boolean isRT)
Note that NO verification is done for this! It will take a raw string and a flag and return a token (access or refresh)Methods in org.oa4mp.client.loader with parameters of type TokenImpl Modifier and Type Method Description net.sf.json.JSONObject
OA2MPService. exchangeRefreshToken(OA2Asset asset, TokenImpl subjectToken, Map additionalParameters, int requestedTokenType, String subjectType, boolean isErsatz)
Use this to either just get a new refresh token (getAT = false) or to use the refresh token to get a new access token (most usual case). -
Uses of TokenImpl in org.oa4mp.delegation.common.token.impl
Subclasses of TokenImpl in org.oa4mp.delegation.common.token.impl Modifier and Type Class Description class
AccessTokenImpl
Created by Jeff Gaynor
on Mar 16, 2011 at 1:01:13 PMclass
AuthorizationGrantImpl
The OAuth 1.0a version of an AuthorizationGrantclass
IDTokenImpl
This is used for ID tokens.class
RefreshTokenImpl
Created by Jeff Gaynor
on 10/2/13 at 12:02 PMMethods in org.oa4mp.delegation.common.token.impl with parameters of type TokenImpl Modifier and Type Method Description protected static void
TokenFactory. parseRawToken(String rawToken, TokenImpl token)
Parses the raw string from, e.g., a server response and populates a token from that.Constructors in org.oa4mp.delegation.common.token.impl with parameters of type TokenImpl Constructor Description TokenParse(String rawToken, TokenImpl token)
-
Uses of TokenImpl in org.oa4mp.delegation.server
Methods in org.oa4mp.delegation.server that return TokenImpl Modifier and Type Method Description TokenImpl
OA2TokenForge. getIDToken(String... tokens)
-
Uses of TokenImpl in org.oa4mp.delegation.server.jwt
Methods in org.oa4mp.delegation.server.jwt that return TokenImpl Modifier and Type Method Description TokenImpl
PayloadHandler. getSignedPayload(edu.uiuc.ncsa.security.util.jwk.JSONWebKey key)
TokenImpl
PayloadHandler. getSignedPayload(edu.uiuc.ncsa.security.util.jwk.JSONWebKey key, String headerType)
Take the payload of this and sign it with the given key, using the header as needed. -
Uses of TokenImpl in org.oa4mp.server.admin.oauth2.tools
Methods in org.oa4mp.server.admin.oauth2.tools with parameters of type TokenImpl Modifier and Type Method Description protected void
OA2CLCCommands. NEWprintToken(TokenImpl tokenImpl, boolean noVerify, boolean printRaw)
void
OA2CLCCommands. printToken(TokenImpl accessToken, boolean noVerify, boolean printRaw)
protected void
TransactionStoreCommands. showExp(String tokenName, long lifetime, boolean isValid, TokenImpl token, int width, String stile)
-
Uses of TokenImpl in org.oa4mp.server.loader.oauth2.claims
Methods in org.oa4mp.server.loader.oauth2.claims that return TokenImpl Modifier and Type Method Description TokenImpl
ServerQDLScriptHandler. getSignedPayload(edu.uiuc.ncsa.security.util.jwk.JSONWebKey key)
TokenImpl
ServerQDLScriptHandler. getSignedPayload(edu.uiuc.ncsa.security.util.jwk.JSONWebKey key, String headerType)
-
Uses of TokenImpl in org.oa4mp.server.loader.oauth2.storage
Methods in org.oa4mp.server.loader.oauth2.storage with parameters of type TokenImpl Modifier and Type Method Description protected net.sf.json.JSONObject
TokenInfoRecord. formatToken(TokenImpl token, long lifetime, boolean isValid)
-
Uses of TokenImpl in org.oa4mp.server.qdl
Methods in org.oa4mp.server.qdl with parameters of type TokenImpl Modifier and Type Method Description protected org.qdl_lang.variables.QDLStem
CLC. tokenToStem(TokenImpl token)
This is rather similar to theOA2CLCCommands.printToken(TokenImpl, boolean, boolean)
and similar commands, except rather than spitting it all out as print statements, the information about the token is organized into a stem for further processing.
-