Class RFC8628State
- java.lang.Object
-
- org.oa4mp.server.loader.oauth2.servlet.RFC8628State
-
public class RFC8628State extends Object
Created by Jeff Gaynor
on 2/10/21 at 4:23 PM
-
-
Field Summary
Fields Modifier and Type Field Description URIdeviceCodebooleanfirstTrylongintervallongissuedAtlonglastTrylonglifetimeStringoriginalScopesThe original string passed in the request.StringuserCodebooleanvalidIf the user finished logging in, hence making the flow valid.
-
Constructor Summary
Constructors Constructor Description RFC8628State()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidfromJSON(net.sf.json.JSONObject jsonObject)booleanisExpired()net.sf.json.JSONObjecttoJSON()
-
-
-
Field Detail
-
userCode
public String userCode
-
deviceCode
public URI deviceCode
-
lifetime
public long lifetime
-
issuedAt
public long issuedAt
-
lastTry
public long lastTry
-
interval
public long interval
-
firstTry
public boolean firstTry
-
valid
public boolean valid
If the user finished logging in, hence making the flow valid.
-
originalScopes
public String originalScopes
The original string passed in the request.
-
-