public class NewAccount extends AbstractModel
Constructor and Description |
---|
NewAccount() |
NewAccount(NewAccount source)
NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
|
Modifier and Type | Method and Description |
---|---|
String |
getAccountName()
Get Account name, which can contain 1-16 letters, digits, and underscores.
|
String |
getAccountPassword()
Get Password, which can contain 8-64 characters.
|
String |
getDescription()
Get Description
|
String |
getHost()
Get Host
|
Long |
getMaxUserConnections()
Get Maximum number of user connections, which cannot be above 10,240.
|
void |
setAccountName(String AccountName)
Set Account name, which can contain 1-16 letters, digits, and underscores.
|
void |
setAccountPassword(String AccountPassword)
Set Password, which can contain 8-64 characters.
|
void |
setDescription(String Description)
Set Description
|
void |
setHost(String Host)
Set Host
|
void |
setMaxUserConnections(Long MaxUserConnections)
Set Maximum number of user connections, which cannot be above 10,240.
|
void |
toMap(HashMap<String,String> map,
String prefix)
Internal implementation, normal users should not use it.
|
any, fromJsonString, getBinaryParams, getMultipartRequestParams, set, setParamArrayObj, setParamArraySimple, setParamObj, setParamSimple, toJsonString
public NewAccount()
public NewAccount(NewAccount source)
public String getAccountName()
public void setAccountName(String AccountName)
AccountName
- Account name, which can contain 1-16 letters, digits, and underscores. It must begin with a letter and end with a letter or digit.public String getAccountPassword()
public void setAccountPassword(String AccountPassword)
AccountPassword
- Password, which can contain 8-64 characters.public String getHost()
public void setHost(String Host)
Host
- Hostpublic String getDescription()
public void setDescription(String Description)
Description
- Descriptionpublic Long getMaxUserConnections()
public void setMaxUserConnections(Long MaxUserConnections)
MaxUserConnections
- Maximum number of user connections, which cannot be above 10,240.Copyright © 2023. All rights reserved.