com.ibm.commerce.user.objects
Class MemberBean

com.ibm.commerce.user.objects.MemberBean
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
MemberGroupBean, OrganizationBean, UserBean

public class MemberBean
implements java.io.Serializable

This bean provides access to the MEMBER table.

The following is a description of this table:

Stores the list of members (participants) of the WebSphere Commerce system.

See Also:
Serialized Form

Constructor Summary
MemberBean()
           
 
Method Summary
 java.lang.Long getMemberId()
          This method provides access to the MEMBER.MEMBER_ID column of DB2 type BIGINT NOT NULL.
 java.lang.Integer getState()
          This method provides access to the MEMBER.STATE column of DB2 type INTEGER NULL.
 void setState(java.lang.Integer aState)
          This method provides access to the MEMBER.STATE column of DB2 type INTEGER NULL.
 

Constructor Detail

MemberBean

public MemberBean()
Method Detail

getMemberId

public java.lang.Long getMemberId()

This method provides access to the MEMBER.MEMBER_ID column of DB2 type BIGINT NOT NULL.

The following is a description of this column:

ID for the member, a unique primary key for this table.

Returns:
java.lang.Long

getState

public java.lang.Integer getState()

This method provides access to the MEMBER.STATE column of DB2 type INTEGER NULL.

The following is a description of this column:

The registration approval status as follows:
0 - pending approval.
1 - approved.
2 - rejected.
Null - the approval is not applicable.

Returns:
java.lang.Integer

setState

public void setState(java.lang.Integer aState)

This method provides access to the MEMBER.STATE column of DB2 type INTEGER NULL.

The following is a description of this column:

The registration approval status as follows:
0 - pending approval.
1 - approved.
2 - rejected.
Null - the approval is not applicable.

Parameters:
aState - java.lang.Integer
Returns:
void