Class TransactionState
- java.lang.Object
-
- org.oa4mp.server.loader.oauth2.state.TransactionState
-
public class TransactionState extends Object
This is a container for mutable state per transaction.Created by Jeff Gaynor
on 4/10/18 at 1:10 PM
-
-
Field Summary
Fields Modifier and Type Field Description static String
FLOW_STATE_TAG
static String
STATE_TAG
-
Constructor Summary
Constructors Constructor Description TransactionState()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
fromJSON(net.sf.json.JSONObject jsonObject)
String
getComment()
FlowStates2
getFlowStates()
net.sf.json.JSONObject
getIdToken()
The ID token once it has been created.void
setComment(String comment)
void
setFlowStates(FlowStates2 flowStates)
void
setIdToken(net.sf.json.JSONObject idToken)
net.sf.json.JSONObject
toJSON()
-
-
-
Method Detail
-
getFlowStates
public FlowStates2 getFlowStates()
-
setFlowStates
public void setFlowStates(FlowStates2 flowStates)
-
getIdToken
public net.sf.json.JSONObject getIdToken()
The ID token once it has been created.- Returns:
-
setIdToken
public void setIdToken(net.sf.json.JSONObject idToken)
-
toJSON
public net.sf.json.JSONObject toJSON()
-
fromJSON
public void fromJSON(net.sf.json.JSONObject jsonObject)
-
getComment
public String getComment()
-
setComment
public void setComment(String comment)
-
-