com.microstrategy.web.beans.AddressListBean |
The AddressListBean
is responsible for displaying and managing
the user's address list.
[Expand]
Inherited Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
abstract void |
cancel()
Cancels the processing of the currently active address.
| ||||||||||
abstract void |
delete()
deletes the currently active address.
| ||||||||||
abstract WebSubscriptionAddress |
getActiveAddress()
Returns the
WebSubscriptionAddress object that is currently
being edited. | ||||||||||
abstract SimpleList |
getAddresses()
returns an uneditable list of user addresses for
DssXmlDeliveryTypeEmail | ||||||||||
abstract SimpleList |
getAvailableDevices()
returns a list of available devices for
DssXmlDeliveryTypeEmail | ||||||||||
abstract int |
getDeliveryMode()
Returns the delivery mode (
EnumWebSubscriptionDeliveryMode ). | ||||||||||
abstract WebSubscriptionAddress |
getNewAddress()
returns a new unpopulated
WebSubscriptionAddress object. | ||||||||||
abstract int |
getSortField()
Returns the field on which the address list would be sorted
| ||||||||||
abstract boolean |
isSortAscending()
returns whether the sort is ascending
| ||||||||||
abstract void |
save()
saves the currently active address.
| ||||||||||
abstract void |
setActiveAddress(String addressID)
Sets the
WebSubscriptionAddress object that is being edited | ||||||||||
abstract void |
setDeliveryMode(int deliveryMode)
Sets the delivery mode (
EnumWebSubscriptionDeliveryMode ). | ||||||||||
abstract void |
setSortAscending(boolean asc)
sets the sort order to be ascending or descending
| ||||||||||
abstract void |
setSortField(int sortField)
Defines the field by which sorting would be done.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() | |||||||||||
![]() | |||||||||||
![]() | |||||||||||
![]() |
Cancels the processing of the currently active address.
Sets the activeAddress to null and sets the xml request status to WebBeanRequestSuccessful
deletes the currently active address. If there is a no active address, then this is a no operation
WebBeanException | thrown if there is any error occurred |
---|
Returns the WebSubscriptionAddress
object that is currently
being edited. If there is no such object, then this method returns null. This method would primarily be
used by the transform to render the address being edited appropriately.
WebSubscriptionAddress
object
returns an uneditable list of user addresses for DssXmlDeliveryTypeEmail
SimpleList
of the the user addresses
WebBeanException | thrown if there is an error while retrieving the list |
---|
returns a list of available devices for DssXmlDeliveryTypeEmail
SimpleList
of objects which can be cast to {WebSubscriptionDevice
}WebBeanException | thrown if there is any error occurred |
---|
Returns the delivery mode (EnumWebSubscriptionDeliveryMode
).
returns a new unpopulated WebSubscriptionAddress
object.
The new address is also set as the activeAddress.
WebSubscriptionAddress
objectWebBeanException | thrown if there is any error occurred |
---|
Returns the field on which the address list would be sorted
returns whether the sort is ascending
saves the currently active address. If there is a no active address, then this is a no operation
WebBeanException | thrown if there is any error occurred |
---|
Sets the WebSubscriptionAddress
object that is being edited
addressID | the ID of the WebSubscriptionAddress object that should be used
as the active address |
---|
WebBeanException | thrown if the ID passed in does not correspond to a valid address |
---|
Sets the delivery mode (EnumWebSubscriptionDeliveryMode
).
deliveryMode | the delivery mode. |
---|
sets the sort order to be ascending or descending
asc | true indicates ascending and false indicates descending |
---|
Defines the field by which sorting would be done.
sortField | the possible values for the sort field are defined in WebSubscriptionsSource |
---|