Class AuthenticationData
- java.lang.Object
-
- io.github.ma1uta.matrix.client.model.account.AuthenticationData
-
public class AuthenticationData extends Object
Authentication Data.
-
-
Field Summary
Fields Modifier and Type Field Description private String
address
3Pid address.private String
medium
3Pid address type.private char[]
password
Password.private String
response
Capthca response.private String
session
Session.private List<ThreePidCred>
threepidCreds
3Pids credentials.private String
token
Auth token.private String
txnId
Transaction id.private String
type
AuthType.private String
uri
OAuth uri.private String
user
User id.
-
Constructor Summary
Constructors Constructor Description AuthenticationData()
-
Method Summary
Modifier and Type Method Description String
getAddress()
String
getMedium()
char[]
getPassword()
String
getResponse()
String
getSession()
List<ThreePidCred>
getThreepidCreds()
String
getToken()
String
getTxnId()
String
getType()
String
getUri()
String
getUser()
void
setAddress(String address)
void
setMedium(String medium)
void
setPassword(char[] password)
void
setResponse(String response)
void
setSession(String session)
void
setThreepidCreds(List<ThreePidCred> threepidCreds)
void
setToken(String token)
void
setTxnId(String txnId)
void
setType(String type)
void
setUri(String uri)
void
setUser(String user)
-
-
-
Field Detail
-
type
private String type
AuthType.
-
session
private String session
Session.
-
user
private String user
User id.
-
password
private char[] password
Password.
-
medium
private String medium
3Pid address type.
-
address
private String address
3Pid address.
-
response
private String response
Capthca response.
-
token
private String token
Auth token.
-
txnId
private String txnId
Transaction id.
-
uri
private String uri
OAuth uri.
-
threepidCreds
private List<ThreePidCred> threepidCreds
3Pids credentials.
-
-
Method Detail
-
getType
public String getType()
-
setType
public void setType(String type)
-
getSession
public String getSession()
-
setSession
public void setSession(String session)
-
getUser
public String getUser()
-
setUser
public void setUser(String user)
-
getPassword
public char[] getPassword()
-
setPassword
public void setPassword(char[] password)
-
getMedium
public String getMedium()
-
setMedium
public void setMedium(String medium)
-
getAddress
public String getAddress()
-
setAddress
public void setAddress(String address)
-
getResponse
public String getResponse()
-
setResponse
public void setResponse(String response)
-
getToken
public String getToken()
-
setToken
public void setToken(String token)
-
getTxnId
public String getTxnId()
-
setTxnId
public void setTxnId(String txnId)
-
getUri
public String getUri()
-
setUri
public void setUri(String uri)
-
getThreepidCreds
public List<ThreePidCred> getThreepidCreds()
-
setThreepidCreds
public void setThreepidCreds(List<ThreePidCred> threepidCreds)
-
-