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 URI
deviceCode
boolean
firstTry
long
interval
long
issuedAt
long
lastTry
long
lifetime
String
originalScopes
The original string passed in the request.String
userCode
boolean
valid
If 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 void
fromJSON(net.sf.json.JSONObject jsonObject)
boolean
isExpired()
net.sf.json.JSONObject
toJSON()
-
-
-
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.
-
-