Description

The AccountDataBean stores information about an individual account. It is a part of one or more service calls within the StockTrader Business Service contract.

Members

Name

Type

Description

accountID

Integer

Gets an account's unique identifier.

loginCount

Integer

Gets the number of times that a user has logged into the account. This number should not be considered accurate within implementations that use claims-based security.

logoutCount

Integer

Gets the number of times that a user has logged out of the account. This number should not be considered accurate within implementations that use claims-based security.

lastLogin

Date/Time

Gets the date and time of the last login by the user associated with the account.

creationDate

Date/Time

Gets the date and time that the account was created.

balance

Floating Point Number

Gets the dollar value of the account balance. Though not stated directly, this is likely in USD.

openBalance

Floating Point Number

Gets the dollar value of the opening account balance. Though not stated directly, this is likely in USD.

profileID

String

Gets the user ID associated with the account.

Definition in XSD

  <xs:complexType name="AccountDataBean">
    <xs:sequence>
      <xs:element minOccurs="0" name="accountID" type="xs:int" />
      <xs:element minOccurs="0" name="loginCount" type="xs:int" />
      <xs:element minOccurs="0" name="logoutCount" type="xs:int" />
      <xs:element minOccurs="0" name="lastLogin" type="xs:dateTime" />
      <xs:element minOccurs="0" name="creationDate" type="xs:dateTime" />
      <xs:element minOccurs="0" name="balance" type="xs:decimal" />
      <xs:element minOccurs="0" name="openBalance" type="xs:decimal" />
      <xs:element minOccurs="0" name="profileID" nillable="true" type="xs:string" />
    </xs:sequence>
  </xs:complexType>

Description/Prefix

Namespace

Target Namespace

http://trade.samples.websphere.ibm.com

tns

http://trade.samples.websphere.ibm.com

xs

http://www.w3.org/2001/XMLSchema

  • No labels