com.ibm.commerce.user.objects
Class MemberAttributeDatetimeValueAccessBean

java.lang.Object
  |
  +--com.ibm.ivj.ejb.runtime.AbstractAccessBean
        |
        +--com.ibm.ivj.ejb.runtime.AbstractEntityAccessBean
              |
              +--com.ibm.commerce.user.objects.MemberAttributeDatetimeValueAccessBean
All Implemented Interfaces:
MemberAttributeDatetimeValueAccessBeanData, java.io.Serializable

public class MemberAttributeDatetimeValueAccessBean
extends com.ibm.ivj.ejb.runtime.AbstractEntityAccessBean
implements MemberAttributeDatetimeValueAccessBeanData

This bean provides access to the MBRATTRVAL table.

The following is a description of this table:

This table stores the values of attributes which are defined in the MBRATTR table for members.

See Also:
Serialized Form

Fields inherited from class com.ibm.ivj.ejb.runtime.AbstractAccessBean
DEFAULT_NAMESERVICE_PROVIDER_URL, DEFAULT_NAMESERVICE_TYPE, ejbRef
 
Constructor Summary
MemberAttributeDatetimeValueAccessBean()
          Default constructor.
MemberAttributeDatetimeValueAccessBean(javax.ejb.EJBObject object)
          Creates an access bean for the specified EJB
MemberAttributeDatetimeValueAccessBean(java.lang.Long aMemberId, java.lang.Long aMemberAttributeId)
          Maps to a corresponding ejbCreate method in the home interface of the EJB
MemberAttributeDatetimeValueAccessBean(java.lang.Long aMemberId, java.lang.Long aMemberAttributeId, java.lang.Integer aStoreEntityId)
          Maps to a corresponding ejbCreate method in the home interface of the EJB
 
Method Summary
 void commitCopyHelper()
          Update(flush) data to the EJBObject (persistent storage).
 java.util.Enumeration findByMemberId(java.lang.Long aMemberId)
          The SQL is "SELECT * FROM MBRATTRVAL WHERE (MEMBER_ID = ?)"
 java.util.Enumeration findByMemberIdAndAttributeId(java.lang.Long aMemberId, java.lang.Long aAttributeId)
          The SQL is "SELECT * FROM MBRATTRVAL WHERE (MEMBER_ID = ?) AND (MBRATTR_ID = ?)"
 java.util.Enumeration findByMemberIdAndStoreEntityId(java.lang.Long aMemberId, java.lang.Integer aStoreEntityId)
          The SQL is "SELECT * FROM MBRATTRVAL WHERE (MEMBER_ID = ?) AND (STOREENT_ID = ?)".
 java.util.Enumeration findByMemberIdAndStoreEntityIdAndValue(java.lang.Long aMemberId, java.lang.Integer aStoreEntityId, java.sql.Timestamp aDateTimeValue)
          The SQL is "SELECT * FROM MBRATTRVAL WHERE (MEMBER_ID = ?) AND (STOREENT_ID = ?) AND (DATETIMEVALUE = ?)".
 java.util.Enumeration findByMemberIdAndValue(java.lang.Long aMemberId, java.sql.Timestamp aDateTimeValue)
          The SQL is "SELECT * FROM MBRATTRVAL WHERE (MEMBER_ID = ?) AND (STOREENT_ID IS NULL) AND (DATETIMEVALUE = ?)".
 java.lang.Object getAttributeValue()
          This method provides access to the MBRATTRVAL.DATETIMEVALUE column of DB2 type TIMESTAMP NULL.
 java.lang.String getMemberAttributeId()
          This method provides access to the MBRATTRVAL.MBRATTR_ID column of DB2 type BIGINT NOT NULL.
 java.lang.Long getMemberAttributeIdInEJBType()
          This method provides access to the MBRATTRVAL.MBRATTR_ID column of DB2 type BIGINT NOT NULL.
 java.lang.String getMemberAttributeType()
          Type of the member attribute value.
 java.lang.String getMemberAttributeValueId()
          This method provides access to the MBRATTRVAL.MBRATTRVAL_ID column of DB2 type BIGINT NOT NULL.
 java.lang.Long getMemberAttributeValueIdInEJBType()
          This method provides access to the MBRATTRVAL.MBRATTRVAL_ID column of DB2 type BIGINT NOT NULL.
 java.lang.String getMemberId()
          This method provides access to the MBRATTRVAL.MEMBER_ID column of DB2 type BIGINT NOT NULL.
 java.lang.Long getMemberIdInEJBType()
          This method provides access to the MBRATTRVAL.MEMBER_ID column of DB2 type BIGINT NOT NULL.
 java.lang.String getStoreEntityId()
          This method provides access to the MBRATTRVAL.STOREENT_ID column of DB2 type INTEGER NULL.
 java.lang.Integer getStoreEntityIdInEJBType()
          This method provides access to the MBRATTRVAL.STOREENT_ID column of DB2 type INTEGER NULL.
 void refreshCopyHelper()
          Load data from the EJBObject.
 void setAttributeValue(java.lang.Object aAttributeValue)
          This method provides access to the MBRATTRVAL.DATETIMEVALUE column of DB2 type TIMESTAMP NULL.
 void setInitKey_memberAttributeValueId(java.lang.String aInitKey_memberAttributeValueId)
          Set the primary key for this object
 void setMemberAttributeId(java.lang.Long aMemberAttributeId)
          This method provides access to the MBRATTRVAL.MBRATTR_ID column of DB2 type BIGINT NOT NULL.
 void setMemberAttributeId(java.lang.String aMemberAttributeId)
          This method provides access to the MBRATTRVAL.MBRATTR_ID column of DB2 type BIGINT NOT NULL.
 void setMemberId(java.lang.Long aMemberId)
          This method provides access to the MBRATTRVAL.MEMBER_ID column of DB2 type BIGINT NOT NULL.
 void setMemberId(java.lang.String aMemberId)
          This method provides access to the MBRATTRVAL.MEMBER_ID column of DB2 type BIGINT NOT NULL.
 void setStoreEntityId(java.lang.Integer aStoreEntityId)
          This method provides access to the MBRATTRVAL.STOREENT_ID column of DB2 type INTEGER NULL.
 void setStoreEntityId(java.lang.String aStoreEntityId)
          This method provides access to the MBRATTRVAL.STOREENT_ID column of DB2 type INTEGER NULL.
 
Methods inherited from class com.ibm.ivj.ejb.runtime.AbstractEntityAccessBean
__getCache, __getCache, __getKey, __setCache, __setCache, __setKey, commitCopyHelper, createAccessBeans, createAccessBeans, instantiateEJBByPrimaryKey, refreshCopyHelper, setEJBRef
 
Methods inherited from class com.ibm.ivj.ejb.runtime.AbstractAccessBean
defaultJNDIName, defaultNameServiceType, defaultNameServiceURL, getEJBRef, getGlobalHome, getHome, getInit_GlobalNameServiceTypeName, getInit_GlobalNameServiceURLName, getInit_JNDIName, getInit_NameServiceTypeName, getInit_NameServiceURLName, getInitContext, getInitContext, instantiateEJB, resetEJBRef, resetHomeCache, setInit_GlobalNameServiceTypeName, setInit_GlobalNameServiceURLName, setInit_JNDIName, setInit_NameServiceTypeName, setInit_NameServiceURLName
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

MemberAttributeDatetimeValueAccessBean

public MemberAttributeDatetimeValueAccessBean()

Default constructor. Maps to findByPrimaryKey.


MemberAttributeDatetimeValueAccessBean

public MemberAttributeDatetimeValueAccessBean(javax.ejb.EJBObject object)
                                       throws java.rmi.RemoteException

Creates an access bean for the specified EJB

Parameters:
object - javax.ejb.EJBObject
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception

MemberAttributeDatetimeValueAccessBean

public MemberAttributeDatetimeValueAccessBean(java.lang.Long aMemberId,
                                              java.lang.Long aMemberAttributeId)
                                       throws javax.naming.NamingException,
                                              javax.ejb.CreateException,
                                              java.rmi.RemoteException,
                                              javax.ejb.FinderException

Maps to a corresponding ejbCreate method in the home interface of the EJB

Parameters:
aMemberId - java.lang.Long
aMemberAttributeId - java.lang.Long
Throws:
javax.naming.NamingException - The javax.naming.NamingException exception
javax.ejb.CreateException - The javax.ejb.CreateException exception
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception

MemberAttributeDatetimeValueAccessBean

public MemberAttributeDatetimeValueAccessBean(java.lang.Long aMemberId,
                                              java.lang.Long aMemberAttributeId,
                                              java.lang.Integer aStoreEntityId)
                                       throws javax.naming.NamingException,
                                              javax.ejb.CreateException,
                                              java.rmi.RemoteException,
                                              javax.ejb.FinderException

Maps to a corresponding ejbCreate method in the home interface of the EJB

Parameters:
aMemberId - java.lang.Long
aMemberAttributeId - java.lang.Long
aStoreEntityId - java.lang.Integer
Throws:
javax.naming.NamingException - The javax.naming.NamingException exception
javax.ejb.CreateException - The javax.ejb.CreateException exception
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
Method Detail

commitCopyHelper

public void commitCopyHelper()
                      throws java.rmi.RemoteException,
                             javax.ejb.CreateException,
                             javax.ejb.FinderException,
                             javax.naming.NamingException

Update(flush) data to the EJBObject (persistent storage).

Overrides:
commitCopyHelper in class com.ibm.ivj.ejb.runtime.AbstractEntityAccessBean
Returns:
void
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.CreateException - The javax.ejb.CreateException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

findByMemberId

public java.util.Enumeration findByMemberId(java.lang.Long aMemberId)
                                     throws java.rmi.RemoteException,
                                            javax.ejb.FinderException,
                                            javax.naming.NamingException

The SQL is "SELECT * FROM MBRATTRVAL WHERE (MEMBER_ID = ?)"

Parameters:
aMemberId - java.lang.Long
Returns:
java.util.Enumeration
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

findByMemberIdAndAttributeId

public java.util.Enumeration findByMemberIdAndAttributeId(java.lang.Long aMemberId,
                                                          java.lang.Long aAttributeId)
                                                   throws java.rmi.RemoteException,
                                                          javax.ejb.FinderException,
                                                          javax.naming.NamingException

The SQL is "SELECT * FROM MBRATTRVAL WHERE (MEMBER_ID = ?) AND (MBRATTR_ID = ?)"

Parameters:
aMemberId - java.lang.Long
aAttributeId - java.lang.Long
Returns:
java.util.Enumeration
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

findByMemberIdAndStoreEntityId

public java.util.Enumeration findByMemberIdAndStoreEntityId(java.lang.Long aMemberId,
                                                            java.lang.Integer aStoreEntityId)
                                                     throws java.rmi.RemoteException,
                                                            javax.ejb.FinderException,
                                                            javax.naming.NamingException

The SQL is "SELECT * FROM MBRATTRVAL WHERE (MEMBER_ID = ?) AND (STOREENT_ID = ?)".

Parameters:
aMemberId - java.lang.Long
aStoreEntityId - java.lang.Integer
Returns:
java.util.Enumeration
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

findByMemberIdAndStoreEntityIdAndValue

public java.util.Enumeration findByMemberIdAndStoreEntityIdAndValue(java.lang.Long aMemberId,
                                                                    java.lang.Integer aStoreEntityId,
                                                                    java.sql.Timestamp aDateTimeValue)
                                                             throws java.rmi.RemoteException,
                                                                    javax.ejb.FinderException,
                                                                    javax.naming.NamingException

The SQL is "SELECT * FROM MBRATTRVAL WHERE (MEMBER_ID = ?) AND (STOREENT_ID = ?) AND (DATETIMEVALUE = ?)".

Parameters:
aMemberId - java.lang.Long
aStoreEntityId - java.lang.Integer
aDateTimeValue - java.sql.Timestamp
Returns:
java.util.Enumeration
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

findByMemberIdAndValue

public java.util.Enumeration findByMemberIdAndValue(java.lang.Long aMemberId,
                                                    java.sql.Timestamp aDateTimeValue)
                                             throws java.rmi.RemoteException,
                                                    javax.ejb.FinderException,
                                                    javax.naming.NamingException

The SQL is "SELECT * FROM MBRATTRVAL WHERE (MEMBER_ID = ?) AND (STOREENT_ID IS NULL) AND (DATETIMEVALUE = ?)".

Parameters:
aMemberId - java.lang.Long
aDateTimeValue - java.sql.Timestamp
Returns:
java.util.Enumeration
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

getAttributeValue

public java.lang.Object getAttributeValue()
                                   throws java.rmi.RemoteException,
                                          javax.ejb.FinderException,
                                          javax.naming.NamingException

This method provides access to the MBRATTRVAL.DATETIMEVALUE column of DB2 type TIMESTAMP NULL.

The following is a description of this column:

If the type of the attribute value is TIMESTAMP, then this column will hold the attribute value. If the type is not TIMESTAMP then this column will be NULL.

Returns:
java.lang.Object
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

getMemberAttributeId

public java.lang.String getMemberAttributeId()
                                      throws java.rmi.RemoteException,
                                             javax.ejb.CreateException,
                                             javax.ejb.FinderException,
                                             javax.naming.NamingException

This method provides access to the MBRATTRVAL.MBRATTR_ID column of DB2 type BIGINT NOT NULL.

The following is a description of this column:

The attribute that this value is associated with. Foreign key to the MBRATTR table.

Specified by:
getMemberAttributeId in interface MemberAttributeDatetimeValueAccessBeanData
Returns:
java.lang.String
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.CreateException - The javax.ejb.CreateException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

getMemberAttributeIdInEJBType

public java.lang.Long getMemberAttributeIdInEJBType()
                                             throws java.rmi.RemoteException,
                                                    javax.ejb.CreateException,
                                                    javax.ejb.FinderException,
                                                    javax.naming.NamingException

This method provides access to the MBRATTRVAL.MBRATTR_ID column of DB2 type BIGINT NOT NULL.

The following is a description of this column:

The attribute that this value is associated with. Foreign key to the MBRATTR table.

Returns:
java.lang.Long
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.CreateException - The javax.ejb.CreateException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

getMemberAttributeType

public java.lang.String getMemberAttributeType()
                                        throws java.rmi.RemoteException,
                                               javax.ejb.CreateException,
                                               javax.ejb.FinderException,
                                               javax.naming.NamingException

Type of the member attribute value.

Specified by:
getMemberAttributeType in interface MemberAttributeDatetimeValueAccessBeanData
Returns:
java.lang.String
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.CreateException - The javax.ejb.CreateException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

getMemberAttributeValueId

public java.lang.String getMemberAttributeValueId()
                                           throws java.rmi.RemoteException,
                                                  javax.ejb.CreateException,
                                                  javax.ejb.FinderException,
                                                  javax.naming.NamingException

This method provides access to the MBRATTRVAL.MBRATTRVAL_ID column of DB2 type BIGINT NOT NULL.

The following is a description of this column:

Primary key for this table.

Specified by:
getMemberAttributeValueId in interface MemberAttributeDatetimeValueAccessBeanData
Returns:
java.lang.String
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.CreateException - The javax.ejb.CreateException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

getMemberAttributeValueIdInEJBType

public java.lang.Long getMemberAttributeValueIdInEJBType()
                                                  throws java.rmi.RemoteException,
                                                         javax.ejb.CreateException,
                                                         javax.ejb.FinderException,
                                                         javax.naming.NamingException

This method provides access to the MBRATTRVAL.MBRATTRVAL_ID column of DB2 type BIGINT NOT NULL.

The following is a description of this column:

Primary key for this table.

Returns:
java.lang.Long
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.CreateException - The javax.ejb.CreateException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

getMemberId

public java.lang.String getMemberId()
                             throws java.rmi.RemoteException,
                                    javax.ejb.CreateException,
                                    javax.ejb.FinderException,
                                    javax.naming.NamingException

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

The following is a description of this column:

The member to which this attribute value applies. Foreign key to the MEMBER table.

Specified by:
getMemberId in interface MemberAttributeDatetimeValueAccessBeanData
Returns:
java.lang.String
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.CreateException - The javax.ejb.CreateException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

getMemberIdInEJBType

public java.lang.Long getMemberIdInEJBType()
                                    throws java.rmi.RemoteException,
                                           javax.ejb.CreateException,
                                           javax.ejb.FinderException,
                                           javax.naming.NamingException

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

The following is a description of this column:

The member to which this attribute value applies. Foreign key to the MEMBER table.

Returns:
java.lang.Long
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.CreateException - The javax.ejb.CreateException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

getStoreEntityId

public java.lang.String getStoreEntityId()
                                  throws java.rmi.RemoteException,
                                         javax.ejb.CreateException,
                                         javax.ejb.FinderException,
                                         javax.naming.NamingException

This method provides access to the MBRATTRVAL.STOREENT_ID column of DB2 type INTEGER NULL.

The following is a description of this column:

The store entity to which this attribute value for this member applies.

Specified by:
getStoreEntityId in interface MemberAttributeDatetimeValueAccessBeanData
Returns:
java.lang.String
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.CreateException - The javax.ejb.CreateException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

getStoreEntityIdInEJBType

public java.lang.Integer getStoreEntityIdInEJBType()
                                            throws java.rmi.RemoteException,
                                                   javax.ejb.CreateException,
                                                   javax.ejb.FinderException,
                                                   javax.naming.NamingException

This method provides access to the MBRATTRVAL.STOREENT_ID column of DB2 type INTEGER NULL.

The following is a description of this column:

The store entity to which this attribute value for this member applies.

Returns:
java.lang.Integer
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.CreateException - The javax.ejb.CreateException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

refreshCopyHelper

public void refreshCopyHelper()
                       throws java.rmi.RemoteException,
                              javax.ejb.CreateException,
                              javax.ejb.FinderException,
                              javax.naming.NamingException

Load data from the EJBObject.

Overrides:
refreshCopyHelper in class com.ibm.ivj.ejb.runtime.AbstractEntityAccessBean
Returns:
void
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.CreateException - The javax.ejb.CreateException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

setAttributeValue

public void setAttributeValue(java.lang.Object aAttributeValue)
                       throws java.rmi.RemoteException,
                              javax.ejb.FinderException,
                              javax.naming.NamingException

This method provides access to the MBRATTRVAL.DATETIMEVALUE column of DB2 type TIMESTAMP NULL.

The following is a description of this column:

If the type of the attribute value is TIMESTAMP, then this column will hold the attribute value. If the type is not TIMESTAMP then this column will be NULL.

Parameters:
aAttributeValue - java.lang.Object
Returns:
void
Throws:
java.rmi.RemoteException - The java.rmi.RemoteException exception
javax.ejb.FinderException - The javax.ejb.FinderException exception
javax.naming.NamingException - The javax.naming.NamingException exception

setInitKey_memberAttributeValueId

public void setInitKey_memberAttributeValueId(java.lang.String aInitKey_memberAttributeValueId)

Set the primary key for this object

Parameters:
aInitKey_memberAttributeValueId - java.lang.String
Returns:
void

setMemberAttributeId

public void setMemberAttributeId(java.lang.Long aMemberAttributeId)

This method provides access to the MBRATTRVAL.MBRATTR_ID column of DB2 type BIGINT NOT NULL.

The following is a description of this column:

The attribute that this value is associated with. Foreign key to the MBRATTR table.

Parameters:
aMemberAttributeId - java.lang.Long
Returns:
void

setMemberAttributeId

public void setMemberAttributeId(java.lang.String aMemberAttributeId)

This method provides access to the MBRATTRVAL.MBRATTR_ID column of DB2 type BIGINT NOT NULL.

The following is a description of this column:

The attribute that this value is associated with. Foreign key to the MBRATTR table.

Specified by:
setMemberAttributeId in interface MemberAttributeDatetimeValueAccessBeanData
Parameters:
aMemberAttributeId - java.lang.String
Returns:
void

setMemberId

public void setMemberId(java.lang.Long aMemberId)

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

The following is a description of this column:

The member to which this attribute value applies. Foreign key to the MEMBER table.

Parameters:
aMemberId - java.lang.Long
Returns:
void

setMemberId

public void setMemberId(java.lang.String aMemberId)

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

The following is a description of this column:

The member to which this attribute value applies. Foreign key to the MEMBER table.

Specified by:
setMemberId in interface MemberAttributeDatetimeValueAccessBeanData
Parameters:
aMemberId - java.lang.String
Returns:
void

setStoreEntityId

public void setStoreEntityId(java.lang.Integer aStoreEntityId)

This method provides access to the MBRATTRVAL.STOREENT_ID column of DB2 type INTEGER NULL.

The following is a description of this column:

The store entity to which this attribute value for this member applies.

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

setStoreEntityId

public void setStoreEntityId(java.lang.String aStoreEntityId)

This method provides access to the MBRATTRVAL.STOREENT_ID column of DB2 type INTEGER NULL.

The following is a description of this column:

The store entity to which this attribute value for this member applies.

Specified by:
setStoreEntityId in interface MemberAttributeDatetimeValueAccessBeanData
Parameters:
aStoreEntityId - java.lang.String
Returns:
void