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 StringFLOW_STATE_TAGstatic StringSTATE_TAG
-
Constructor Summary
Constructors Constructor Description TransactionState()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidfromJSON(net.sf.json.JSONObject jsonObject)StringgetComment()FlowStates2getFlowStates()net.sf.json.JSONObjectgetIdToken()The ID token once it has been created.voidsetComment(String comment)voidsetFlowStates(FlowStates2 flowStates)voidsetIdToken(net.sf.json.JSONObject idToken)net.sf.json.JSONObjecttoJSON()
-
-
-
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)
-
-