Package org.keycloak.admin.ui.rest.model
Class SessionRepresentation
- java.lang.Object
-
- org.keycloak.admin.ui.rest.model.SessionRepresentation
-
public class SessionRepresentation extends Object
-
-
Constructor Summary
Constructors Constructor Description SessionRepresentation()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,String>getClients()StringgetId()StringgetIpAddress()longgetLastAccess()longgetStart()SessionId.SessionTypegetType()StringgetUserId()StringgetUsername()voidsetClients(Map<String,String> clients)voidsetId(String id)voidsetIpAddress(String ipAddress)voidsetLastAccess(long lastAccess)voidsetStart(long start)voidsetType(SessionId.SessionType type)voidsetUserId(String userId)voidsetUsername(String username)
-
-
-
Method Detail
-
getId
public String getId()
-
setId
public void setId(String id)
-
getUsername
public String getUsername()
-
setUsername
public void setUsername(String username)
-
getUserId
public String getUserId()
-
setUserId
public void setUserId(String userId)
-
getIpAddress
public String getIpAddress()
-
setIpAddress
public void setIpAddress(String ipAddress)
-
getType
public SessionId.SessionType getType()
-
setType
public void setType(SessionId.SessionType type)
-
getStart
public long getStart()
-
setStart
public void setStart(long start)
-
getLastAccess
public long getLastAccess()
-
setLastAccess
public void setLastAccess(long lastAccess)
-
-