|
Groovy Documentation | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.ace.mws.mam.Account
class Account
Users may be designated as members of a account and may be allowed to share its allocations. The user members may be designated as active or inactive, and as a account admin or not a account admin. Default account properties include the description, the organization it is part of, and whether or not it is active. A account's user membership can also be adjusted. By default, a standard user may only query accounts they belong to.
Field Summary | |
---|---|
private Boolean |
active
A boolean indicating whether this account is active or not. |
private Date |
creationTime
The time this account was created. |
private Boolean |
deleted
A boolean indicating whether this account is deleted or not. |
private String |
description
The account description. |
private String |
id
The unique account identifier. |
private Date |
modificationTime
The time this account was last modified. |
private String |
organization
The organization to which the account belongs. |
private Long |
requestId
The id of the last modifying request. |
private Long |
transactionId
The id of the last modifying transaction. |
private Set |
users
(AccountUser collection) The users associated with this account. |
Constructor Summary | |
Account()
|
Method Summary | |
---|---|
Boolean
|
getActive()
A boolean indicating whether this account is active or not. |
Date
|
getCreationTime()
The time this account was created. |
Boolean
|
getDeleted()
A boolean indicating whether this account is deleted or not. |
String
|
getDescription()
The account description. |
String
|
getId()
The unique account identifier. |
Date
|
getModificationTime()
The time this account was last modified. |
String
|
getOrganization()
The organization to which the account belongs. |
Long
|
getRequestId()
The id of the last modifying request. |
Long
|
getTransactionId()
The id of the last modifying transaction. |
Set
|
getUsers()
(AccountUser collection) The users associated with this account. |
void
|
setActive(Boolean active)
A boolean indicating whether this account is active or not. |
void
|
setCreationTime(Date creationTime)
The time this account was created. |
void
|
setDeleted(Boolean deleted)
A boolean indicating whether this account is deleted or not. |
void
|
setDescription(String description)
The account description. |
void
|
setId(String id)
The unique account identifier. |
void
|
setModificationTime(Date modificationTime)
The time this account was last modified. |
void
|
setOrganization(String organization)
The organization to which the account belongs. |
void
|
setRequestId(Long requestId)
The id of the last modifying request. |
void
|
setTransactionId(Long transactionId)
The id of the last modifying transaction. |
void
|
setUsers(Set users)
(AccountUser collection) The users associated with this account. |
String
|
toString()
|
Methods inherited from class Object | |
---|---|
wait, wait, wait, equals, toString, hashCode, getClass, notify, notifyAll |
Field Detail |
---|
private Boolean active
private Date creationTime
private Boolean deleted
private String description
private String id
private Date modificationTime
private String organization
private Long requestId
private Long transactionId
private Set users
Constructor Detail |
---|
Account()
Method Detail |
---|
Boolean getActive()
Date getCreationTime()
Boolean getDeleted()
String getDescription()
String getId()
Date getModificationTime()
String getOrganization()
Long getRequestId()
Long getTransactionId()
Set getUsers()
void setActive(Boolean active)
void setCreationTime(Date creationTime)
void setDeleted(Boolean deleted)
void setDescription(String description)
void setId(String id)
void setModificationTime(Date modificationTime)
void setOrganization(String organization)
void setRequestId(Long requestId)
void setTransactionId(Long transactionId)
void setUsers(Set users)
String toString()
Groovy Documentation