Interface OIDCServiceTransactionInterface
-
public interface OIDCServiceTransactionInterfaceMostly this exists because of the inheritance hierarchy vis a vis the very ancient OAuth 1 code. In a refactoring, this would go away. Basically it exposes OAuth2 functionality.Created by Jeff Gaynor
on 2/15/20 at 5:46 PM
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longgetAccessTokenLifetime()net.sf.json.JSONObjectgetATData()List<String>getAudience()longgetAuthzGrantLifetime()net.sf.json.JSONObjectgetExtendedAttributes()FlowStatesgetFlowStates()StringgetIDTokenIdentifier()StringgetProxyId()net.sf.json.JSONObjectgetProxyState()longgetRefreshTokenLifetime()List<String>getResource()net.sf.json.JSONObjectgetRTData()Collection<String>getScopes()net.sf.json.JSONObjectgetUserMetaData()voidsetATData(net.sf.json.JSONObject atData)voidsetAudience(List<String> audience)voidsetClaimsSources(List<ClaimSource> sources)voidsetExtendedAttributes(net.sf.json.JSONObject xas)voidsetFlowStates(FlowStates flowStates)voidsetIDTokenIdentifier(String idTokenIdentifier)voidsetProxyId(String proxyId)voidsetProxyState(net.sf.json.JSONObject proxyState)voidsetResource(List<String> resource)voidsetScopes(Collection<String> scopes)voidsetUserMetaData(net.sf.json.JSONObject claims)
-
-
-
Method Detail
-
getFlowStates
FlowStates getFlowStates()
-
setFlowStates
void setFlowStates(FlowStates flowStates)
-
getScopes
Collection<String> getScopes()
-
setClaimsSources
void setClaimsSources(List<ClaimSource> sources)
-
getRTData
net.sf.json.JSONObject getRTData()
-
setScopes
void setScopes(Collection<String> scopes)
-
getExtendedAttributes
net.sf.json.JSONObject getExtendedAttributes()
-
setExtendedAttributes
void setExtendedAttributes(net.sf.json.JSONObject xas)
-
getUserMetaData
net.sf.json.JSONObject getUserMetaData()
-
setUserMetaData
void setUserMetaData(net.sf.json.JSONObject claims)
-
getAccessTokenLifetime
long getAccessTokenLifetime()
-
getRefreshTokenLifetime
long getRefreshTokenLifetime()
-
getAuthzGrantLifetime
long getAuthzGrantLifetime()
-
getProxyId
String getProxyId()
-
setProxyId
void setProxyId(String proxyId)
-
getProxyState
net.sf.json.JSONObject getProxyState()
-
setProxyState
void setProxyState(net.sf.json.JSONObject proxyState)
-
getIDTokenIdentifier
String getIDTokenIdentifier()
-
setIDTokenIdentifier
void setIDTokenIdentifier(String idTokenIdentifier)
-
getATData
net.sf.json.JSONObject getATData()
-
setATData
void setATData(net.sf.json.JSONObject atData)
-
-