Interface OIDCServiceTransactionInterface
-
public interface OIDCServiceTransactionInterface
Mostly 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 long
getAccessTokenLifetime()
net.sf.json.JSONObject
getATData()
List<String>
getAudience()
long
getAuthzGrantLifetime()
net.sf.json.JSONObject
getExtendedAttributes()
FlowStates
getFlowStates()
String
getIDTokenIdentifier()
String
getProxyId()
net.sf.json.JSONObject
getProxyState()
long
getRefreshTokenLifetime()
List<String>
getResource()
net.sf.json.JSONObject
getRTData()
Collection<String>
getScopes()
net.sf.json.JSONObject
getUserMetaData()
void
setATData(net.sf.json.JSONObject atData)
void
setAudience(List<String> audience)
void
setClaimsSources(List<ClaimSource> sources)
void
setExtendedAttributes(net.sf.json.JSONObject xas)
void
setFlowStates(FlowStates flowStates)
void
setIDTokenIdentifier(String idTokenIdentifier)
void
setProxyId(String proxyId)
void
setProxyState(net.sf.json.JSONObject proxyState)
void
setResource(List<String> resource)
void
setScopes(Collection<String> scopes)
void
setUserMetaData(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)
-
-