com.ibm.commerce.common.objects
Class StoreEntityBean

com.ibm.commerce.common.objects.StoreEntityBean
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
StoreBean, StoreGroupBean

public class StoreEntityBean
implements java.io.Serializable

This bean provides access to the STOREENT table.

The following is a description of this table:

Each row of this table represents a StoreEntity. A StoreEntity is an abstract super class that can represent either a Store or a StoreGroup. It is represented in the database as a row in the this table.

See Also:
Serialized Form

Constructor Summary
StoreEntityBean()
           
 
Method Summary
 java.lang.String getDefaultCurrency()
          This method provides access to the STOREENT.SETCCURR column of DB2 type CHAR(3) NULL.
 java.lang.String getIdentifier()
          This method provides access to the STOREENT.IDENTIFIER column of DB2 type VARCHAR(254) NOT NULL.
 java.lang.Long getMemberId()
          This method provides access to the STOREENT.MEMBER_ID column of DB2 type BIGINT NOT NULL.
 java.lang.Integer getStoreEntityId()
          This method provides access to the STOREENT.STOREENT_ID column of DB2 type INTEGER NOT NULL.
 void setDefaultCurrency(java.lang.String aDefaultCurrency)
          This method provides access to the STOREENT.SETCCURR column of DB2 type CHAR(3) NULL.
 void setIdentifier(java.lang.String aIdentifier)
          This method provides access to the STOREENT.IDENTIFIER column of DB2 type VARCHAR(254) NOT NULL.
 void setMemberId(java.lang.Long aMemberId)
          This method provides access to the STOREENT.MEMBER_ID column of DB2 type BIGINT NOT NULL.
 

Constructor Detail

StoreEntityBean

public StoreEntityBean()
Method Detail

getDefaultCurrency

public java.lang.String getDefaultCurrency()

This method provides access to the STOREENT.SETCCURR column of DB2 type CHAR(3) NULL.

The following is a description of this column:

The default currency for a StoreEntity. Refer to STOREENT table: details for more information.

Returns:
java.lang.String

getIdentifier

public java.lang.String getIdentifier()

This method provides access to the STOREENT.IDENTIFIER column of DB2 type VARCHAR(254) NOT NULL.

The following is a description of this column:

A string that, along with the owner, uniquely identifies the StoreEntity.

Returns:
java.lang.String

getMemberId

public java.lang.Long getMemberId()

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

The following is a description of this column:

The owner of the StoreEntity.

Returns:
java.lang.Long

getStoreEntityId

public java.lang.Integer getStoreEntityId()

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

The following is a description of this column:

Generated unique key.

Returns:
java.lang.Integer

setDefaultCurrency

public void setDefaultCurrency(java.lang.String aDefaultCurrency)

This method provides access to the STOREENT.SETCCURR column of DB2 type CHAR(3) NULL.

The following is a description of this column:

The default currency for a StoreEntity. Refer to STOREENT table: details for more information.

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

setIdentifier

public void setIdentifier(java.lang.String aIdentifier)

This method provides access to the STOREENT.IDENTIFIER column of DB2 type VARCHAR(254) NOT NULL.

The following is a description of this column:

A string that, along with the owner, uniquely identifies the StoreEntity.

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

setMemberId

public void setMemberId(java.lang.Long aMemberId)

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

The following is a description of this column:

The owner of the StoreEntity.

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