Class SessionRepresentation
- java.lang.Object
-
- org.keycloak.representations.account.SessionRepresentation
-
public class SessionRepresentation extends Object
Created by st on 29/03/17.
-
-
Constructor Summary
Constructors Constructor Description SessionRepresentation()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getBrowser()
List<ClientRepresentation>
getClients()
Boolean
getCurrent()
int
getExpires()
String
getId()
String
getIpAddress()
int
getLastAccess()
int
getStarted()
void
setBrowser(String browser)
void
setClients(List<ClientRepresentation> clients)
void
setCurrent(Boolean current)
void
setExpires(int expires)
void
setId(String id)
void
setIpAddress(String ipAddress)
void
setLastAccess(int lastAccess)
void
setStarted(int started)
-
-
-
Method Detail
-
getId
public String getId()
-
setId
public void setId(String id)
-
getIpAddress
public String getIpAddress()
-
setIpAddress
public void setIpAddress(String ipAddress)
-
getStarted
public int getStarted()
-
setStarted
public void setStarted(int started)
-
getLastAccess
public int getLastAccess()
-
setLastAccess
public void setLastAccess(int lastAccess)
-
getExpires
public int getExpires()
-
setExpires
public void setExpires(int expires)
-
getClients
public List<ClientRepresentation> getClients()
-
setClients
public void setClients(List<ClientRepresentation> clients)
-
setBrowser
public void setBrowser(String browser)
-
getBrowser
public String getBrowser()
-
getCurrent
public Boolean getCurrent()
-
setCurrent
public void setCurrent(Boolean current)
-
-