Package org.oa4mp.delegation.server.jwt
Class FlowStates
- java.lang.Object
-
- org.oa4mp.delegation.server.jwt.FlowStates
-
public class FlowStates extends Object
A container for the states that are permitted. These change the control flow, e.g. access no refresh tokens if a certain condition is met. The default for all of these is true, meaning thatCreated by Jeff Gaynor
on 3/26/18 at 1:19 PM
-
-
Field Summary
Fields Modifier and Type Field Description boolean
acceptRequests
boolean
accessToken
boolean
at_do_templates
boolean
getCert
boolean
getClaims
boolean
idToken
boolean
refreshToken
boolean
userInfo
-
Constructor Summary
Constructors Constructor Description FlowStates()
FlowStates(net.sf.json.JSONObject json)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
fromJSON(net.sf.json.JSONObject jsonObject)
net.sf.json.JSONObject
toJSON()
String
toString()
-
-
-
Field Detail
-
acceptRequests
public boolean acceptRequests
-
accessToken
public boolean accessToken
-
getCert
public boolean getCert
-
getClaims
public boolean getClaims
-
idToken
public boolean idToken
-
refreshToken
public boolean refreshToken
-
userInfo
public boolean userInfo
-
at_do_templates
public boolean at_do_templates
-
-