An object defining the basic abilities we want all of our hibernate objects to have.
| name | data type | type | namespace | min/max occurs | description |
|---|---|---|---|---|---|
| bankNum | string | element | 0/1 | The ID of the bank in Encompass' system. | |
| companyNum | string | element | 0/1 | The ID of the company in Encompass' system. | |
| contactEmail | string | element | 0/1 | ||
| contactName | string | element | 0/1 | ||
| contactPhone | string | element | 0/1 | ||
| contactTitle | string | element | 0/1 | ||
| credit_limit | int | element | 0/1 | The default credit limit for the company. | |
| expireDays | int | element | 0/1 | Number of days after check out to expire the card | |
| groupLogin | string | element | 0/1 | The login group for this credential. | |
| password | string | element | 0/1 | The encrypted password that the client/user logs in as. | |
| username | string | element | 0/1 | The username that the client/user logs in as. | |
Properties inherited from baseHibernateEntity |
|||||
| id | long | element | 0/1 | The unique internal ID of the object. | |
| version | long | element | 0/1 | For internal use only. This is the serialization recorder for optimistic locking of several objects between sessions. | |
Properties inherited from baseEntity |
|||||
| violations | list of simpleViolation | element | 0/unbounded | A list of constraint violations, if any, that this object has. | |
Example
<encompassCredentials> <username>...</username> <password>...</password> <bankNum>...</bankNum> <companyNum>...</companyNum> <groupLogin>...</groupLogin> <credit_limit>...</credit_limit> <expireDays>...</expireDays> <contactName>...</contactName> <contactTitle>...</contactTitle> <contactPhone>...</contactPhone> <contactEmail>...</contactEmail> <id>...</id> <version>...</version> <violations/> </encompassCredentials>