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 that everything is allowed.Created by Jeff Gaynor
on 3/26/18 at 1:19 PM
-
-
Field Summary
Fields Modifier and Type Field Description booleanacceptRequestsbooleanaccessTokenbooleanat_do_templatesbooleangetCertbooleangetClaimsbooleanidTokenbooleanrefreshTokenbooleanuserInfo
-
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 voidfromJSON(net.sf.json.JSONObject jsonObject)net.sf.json.JSONObjecttoJSON()StringtoString()
-
-
-
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
-
-