Groovy Documentation

com.ace.mws.mam
[Groovy] Class Account

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.

Authors:
jpratt


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

active

private Boolean active
A boolean indicating whether this account is active or not.


creationTime

private Date creationTime
The time this account was created.


deleted

private Boolean deleted
A boolean indicating whether this account is deleted or not.


description

private String description
The account description.


id

private String id
The unique account identifier.


modificationTime

private Date modificationTime
The time this account was last modified.


organization

private String organization
The organization to which the account belongs.


requestId

private Long requestId
The id of the last modifying request.


transactionId

private Long transactionId
The id of the last modifying transaction.


users

private Set users
(AccountUser collection) The users associated with this account.
See Also:
AccountUser


 
Constructor Detail

Account

Account()


 
Method Detail

getActive

Boolean getActive()
A boolean indicating whether this account is active or not.


getCreationTime

Date getCreationTime()
The time this account was created.


getDeleted

Boolean getDeleted()
A boolean indicating whether this account is deleted or not.


getDescription

String getDescription()
The account description.


getId

String getId()
The unique account identifier.


getModificationTime

Date getModificationTime()
The time this account was last modified.


getOrganization

String getOrganization()
The organization to which the account belongs.


getRequestId

Long getRequestId()
The id of the last modifying request.


getTransactionId

Long getTransactionId()
The id of the last modifying transaction.


getUsers

Set getUsers()
(AccountUser collection) The users associated with this account.
See Also:
AccountUser


setActive

void setActive(Boolean active)
A boolean indicating whether this account is active or not.


setCreationTime

void setCreationTime(Date creationTime)
The time this account was created.


setDeleted

void setDeleted(Boolean deleted)
A boolean indicating whether this account is deleted or not.


setDescription

void setDescription(String description)
The account description.


setId

void setId(String id)
The unique account identifier.


setModificationTime

void setModificationTime(Date modificationTime)
The time this account was last modified.


setOrganization

void setOrganization(String organization)
The organization to which the account belongs.


setRequestId

void setRequestId(Long requestId)
The id of the last modifying request.


setTransactionId

void setTransactionId(Long transactionId)
The id of the last modifying transaction.


setUsers

void setUsers(Set users)
(AccountUser collection) The users associated with this account.
See Also:
AccountUser


toString

String toString()


 

Groovy Documentation