|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--com.ibm.ivj.ejb.runtime.AbstractAccessBean | +--com.ibm.ivj.ejb.runtime.AbstractEntityAccessBean | +--com.ibm.commerce.fulfillment.objects.ShippingArrangementAccessBean
This bean provides access to the SHPARRANGE table.
The following is a description of this table:
Each row of this table represents a ShippingArrangement, indicating that a FulfillmentCenter can ship products on behalf of a Store using a ShippingMode.
Fields inherited from class com.ibm.ivj.ejb.runtime.AbstractAccessBean |
DEFAULT_NAMESERVICE_PROVIDER_URL, DEFAULT_NAMESERVICE_TYPE, ejbRef |
Constructor Summary | |
ShippingArrangementAccessBean()
Default constructor. |
|
ShippingArrangementAccessBean(javax.ejb.EJBObject aEJBObject)
Creates an access bean for the specified EJB. |
|
ShippingArrangementAccessBean(java.lang.Integer aFulfillmentCenterId,
java.lang.Integer aStoreId)
Creates an access bean with the specified attributes. |
Method Summary | |
void |
commitCopyHelper()
Update(flush) data to the EJBObject (persistent storage). |
java.util.Enumeration |
findByStoreAndFulfillmentCenter(java.lang.Integer aStoreId,
java.lang.Integer aFulfillmentCenterId)
Retrieves the ShippingArrangementAccessBeans that match the specified Store and FulfillmentCenter. The SQL query used to fetch all the required rows from the SHPARRANGE table is: SELECT * FROM SHPARRANGE T1 WHERE T1.STORE_ID = ? AND T1.FFMCENTER_ID = ? |
java.util.Enumeration |
findByStoreAndShipMode(java.lang.Integer aStoreId,
java.lang.Integer aShippingModeId)
Retrieves the ShippingArrangementAccessBeans that match the specified Store and ShippingMode. The SQL query used to fetch all the required rows from the SHPARRANGE table is: SELECT * FROM SHPARRANGE T1 WHERE T1.STORE_ID = ? AND T1.SHIPMODE_ID = ? |
java.util.Enumeration |
findByStoreFulfillmentCenterAndShipMode(java.lang.Integer aStoreId,
java.lang.Integer aFulfillmentCenterId,
java.lang.Integer aShippingModeId)
Retrieves the ShippingArrangementAccessBeans that match the specified Store, FulfillmentCenter and ShippingMode. The SQL query used to fetch all the required rows from the SHPARRANGE table is: SELECT * FROM SHPARRANGE T1 WHERE T1.STORE_ID = ? AND T1.FFMCENTER_ID = ? AND T1.SHIPMODE_ID = ? AND (T1.STARTDATE IS NULL OR T1.STARTDATE <= CURRENT TIMESTAMP AND (T1.ENDDATE IS NULL OR T1.ENDDATE >= CURRENT TIMESTAMP ORDER BY T1.PRECEDENCE DESC |
java.util.Enumeration |
findByStoreNullShipModeAndCurrentTime(java.lang.Integer aStoreId)
Retrieves the ShippingArrangementAccessBeans that match the specified Store, with ShippingMode not specified, and are currently effective. The SQL query used to fetch all the required rows from the SHPARRANGE table is: SELECT * FROM SHPARRANGE T1 WHERE T1.STORE_ID = ? AND T1.SHIPMODE_ID IS NULL AND (T1.STARTDATE IS NULL OR T1.STARTDATE <= CURRENT TIMESTAMP AND (T1.ENDDATE IS NULL OR T1.ENDDATE >= CURRENT TIMESTAMP ORDER BY T1.PRECEDENCE DESC |
java.util.Enumeration |
findByStoreShipModeAndCurrentTime(java.lang.Integer aStoreId,
java.lang.Integer aShippingModeId)
Retrieves the ShippingArrangementAccessBeans that match the specified Store and ShippingMode, and are currently effective. The SQL query used to fetch all the required rows from the SHPARRANGE table is: SELECT * FROM SHPARRANGE T1 WHERE T1.STORE_ID = ? AND (T1.SHIPMODE_ID = ? or T1.SHIPMODE_ID IS NULL) AND (T1.STARTDATE IS NULL OR T1.STARTDATE <= CURRENT TIMESTAMP AND (T1.ENDDATE IS NULL OR T1.ENDDATE >= CURRENT TIMESTAMP ORDER BY T1.PRECEDENCE DESC |
java.lang.String |
getEndDate()
This method provides access to the SHPARRANGE.ENDDATE column of DB2 type TIMESTAMP NULL. |
java.sql.Timestamp |
getEndDateInEJBType()
This method provides access to the SHPARRANGE.ENDDATE column of DB2 type TIMESTAMP NULL. |
java.lang.String |
getField1()
This method provides access to the SHPARRANGE.FIELD1 column of DB2 type VARCHAR(254) NULL. |
java.lang.String |
getField2()
This method provides access to the SHPARRANGE.FIELD2 column of DB2 type INTEGER NULL. |
java.lang.Integer |
getField2InEJBType()
This method provides access to the SHPARRANGE.FIELD2 column of DB2 type INTEGER NULL. |
java.lang.String |
getFlags()
This method provides access to the SHPARRANGE.FLAGS column of DB2 type INTEGER NOT NULL. |
java.lang.Integer |
getFlagsInEJBType()
This method provides access to the SHPARRANGE.FLAGS column of DB2 type INTEGER NOT NULL. |
java.lang.String |
getFulfillmentCenterId()
This method provides access to the SHPARRANGE.FFMCENTER_ID column of DB2 type INTEGER NOT NULL. |
java.lang.Integer |
getFulfillmentCenterIdInEJBType()
This method provides access to the SHPARRANGE.FFMCENTER_ID column of DB2 type INTEGER NOT NULL. |
java.lang.String |
getPrecedence()
This method provides access to the SHPARRANGE.PRECEDENCE column of DB2 type FLOAT NOT NULL. |
java.lang.Double |
getPrecedenceInEJBType()
This method provides access to the SHPARRANGE.PRECEDENCE column of DB2 type FLOAT NOT NULL. |
java.lang.String |
getShipArrangementId()
This method provides access to the SHPARRANGE.SHPARRANGE_ID column of DB2 type INTEGER NOT NULL. |
java.lang.Integer |
getShipArrangementIdInEJBType()
This method provides access to the SHPARRANGE.SHPARRANGE_ID column of DB2 type INTEGER NOT NULL. |
java.lang.String |
getShipModeId()
This method provides access to the SHPARRANGE.SHIPMODE_ID column of DB2 type INTEGER NULL. |
java.lang.Integer |
getShipModeIdInEJBType()
This method provides access to the SHPARRANGE.SHIPMODE_ID column of DB2 type INTEGER NULL. |
java.lang.String |
getStartDate()
This method provides access to the SHPARRANGE.STARTDATE column of DB2 type TIMESTAMP NULL. |
java.sql.Timestamp |
getStartDateInEJBType()
This method provides access to the SHPARRANGE.STARTDATE column of DB2 type TIMESTAMP NULL. |
java.lang.String |
getStoreId()
This method provides access to the SHPARRANGE.STORE_ID column of DB2 type INTEGER NOT NULL. |
java.lang.Integer |
getStoreIdInEJBType()
This method provides access to the SHPARRANGE.STORE_ID column of DB2 type INTEGER NOT NULL. |
java.lang.String |
getTrackingNumber()
This method provides access to the SHPARRANGE.TRACKINGNUMBER column of DB2 type VARCHAR(64) NULL. |
void |
refreshCopyHelper()
Load data from the EJBObject. |
void |
setEndDate(java.lang.String aEndDate)
This method provides access to the SHPARRANGE.ENDDATE column of DB2 type TIMESTAMP NULL. |
void |
setEndDate(java.sql.Timestamp aEndDate)
This method provides access to the SHPARRANGE.ENDDATE column of DB2 type TIMESTAMP NULL. |
void |
setField1(java.lang.String aField1)
This method provides access to the SHPARRANGE.FIELD1 column of DB2 type VARCHAR(254) NULL. |
void |
setField2(java.lang.Integer aField2)
This method provides access to the SHPARRANGE.FIELD2 column of DB2 type INTEGER NULL. |
void |
setField2(java.lang.String aField2)
This method provides access to the SHPARRANGE.FIELD2 column of DB2 type INTEGER NULL. |
void |
setFlags(java.lang.Integer aFlags)
This method provides access to the SHPARRANGE.FLAGS column of DB2 type INTEGER NOT NULL. |
void |
setFlags(java.lang.String aFlags)
This method provides access to the SHPARRANGE.FLAGS column of DB2 type INTEGER NOT NULL. |
void |
setFulfillmentCenterId(java.lang.Integer aFulfillmentCenterId)
This method provides access to the SHPARRANGE.FFMCENTER_ID column of DB2 type INTEGER NOT NULL. |
void |
setFulfillmentCenterId(java.lang.String aFulfillmentCenterId)
This method provides access to the SHPARRANGE.FFMCENTER_ID column of DB2 type INTEGER NOT NULL. |
void |
setInitKey_shipArrangementId(java.lang.String aInitKey_shipArrangementId)
Set the primary key for this object |
void |
setPrecedence(java.lang.Double aPrecedence)
This method provides access to the SHPARRANGE.PRECEDENCE column of DB2 type FLOAT NOT NULL. |
void |
setPrecedence(java.lang.String aPrecedence)
This method provides access to the SHPARRANGE.PRECEDENCE column of DB2 type FLOAT NOT NULL. |
void |
setShipArrangementId(java.lang.Integer aShipArrangementId)
This method provides access to the SHPARRANGE.SHPARRANGE_ID column of DB2 type INTEGER NOT NULL. |
void |
setShipArrangementId(java.lang.String aShipArrangementId)
This method provides access to the SHPARRANGE.SHPARRANGE_ID column of DB2 type INTEGER NOT NULL. |
void |
setShipModeId(java.lang.Integer aShipModeId)
This method provides access to the SHPARRANGE.SHIPMODE_ID column of DB2 type INTEGER NULL. |
void |
setShipModeId(java.lang.String aShipModeId)
This method provides access to the SHPARRANGE.SHIPMODE_ID column of DB2 type INTEGER NULL. |
void |
setStartDate(java.lang.String aStartDate)
This method provides access to the SHPARRANGE.STARTDATE column of DB2 type TIMESTAMP NULL. |
void |
setStartDate(java.sql.Timestamp aStartDate)
This method provides access to the SHPARRANGE.STARTDATE column of DB2 type TIMESTAMP NULL. |
void |
setStoreId(java.lang.Integer aStoreId)
This method provides access to the SHPARRANGE.STORE_ID column of DB2 type INTEGER NOT NULL. |
void |
setStoreId(java.lang.String aStoreId)
This method provides access to the SHPARRANGE.STORE_ID column of DB2 type INTEGER NOT NULL. |
void |
setTrackingNumber(java.lang.String aTrackingNumber)
This method provides access to the SHPARRANGE.TRACKINGNUMBER column of DB2 type VARCHAR(64) 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 |
public ShippingArrangementAccessBean()
Default constructor. Maps to findByPrimaryKey.
public ShippingArrangementAccessBean(javax.ejb.EJBObject aEJBObject) throws java.rmi.RemoteException
Creates an access bean for the specified EJB.
aEJBObject
- The EJB Object used for the access bean construction.java.rmi.RemoteException
- The java.rmi.RemoteException exceptionpublic ShippingArrangementAccessBean(java.lang.Integer aFulfillmentCenterId, java.lang.Integer aStoreId) throws javax.naming.NamingException, javax.ejb.CreateException, java.rmi.RemoteException, javax.ejb.FinderException
Creates an access bean with the specified attributes.
aFulfillmentCenterId
- the FulfillmentCenter IDaStoreId
- the Store IDjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionMethod Detail |
public void commitCopyHelper() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
Update(flush) data to the EJBObject (persistent storage).
commitCopyHelper
in class com.ibm.ivj.ejb.runtime.AbstractEntityAccessBean
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.util.Enumeration findByStoreAndFulfillmentCenter(java.lang.Integer aStoreId, java.lang.Integer aFulfillmentCenterId) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
Retrieves the ShippingArrangementAccessBeans that match the specified Store and FulfillmentCenter.
The SQL query used to fetch all the required rows from the
SHPARRANGE table is:
SELECT * FROM SHPARRANGE T1 WHERE T1.STORE_ID = ? AND T1.FFMCENTER_ID = ?
aStoreId
- the Store IDaFulfillmentCenterId
- the FulfillmentCenter IDjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.util.Enumeration findByStoreAndShipMode(java.lang.Integer aStoreId, java.lang.Integer aShippingModeId) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
Retrieves the ShippingArrangementAccessBeans that match the specified Store and ShippingMode.
The SQL query used to fetch all the required rows from the
SHPARRANGE table is:
SELECT * FROM SHPARRANGE T1 WHERE T1.STORE_ID = ? AND T1.SHIPMODE_ID = ?
aStoreId
- the Store IDaShippingModeId
- the ShippingMode IDjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.util.Enumeration findByStoreFulfillmentCenterAndShipMode(java.lang.Integer aStoreId, java.lang.Integer aFulfillmentCenterId, java.lang.Integer aShippingModeId) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
Retrieves the ShippingArrangementAccessBeans that match the specified Store, FulfillmentCenter and ShippingMode.
The SQL query used to fetch all the required rows from the
SHPARRANGE table is:
SELECT * FROM SHPARRANGE T1 WHERE
T1.STORE_ID = ? AND T1.FFMCENTER_ID = ? AND T1.SHIPMODE_ID = ?
AND (T1.STARTDATE IS NULL OR T1.STARTDATE <= CURRENT TIMESTAMP
AND (T1.ENDDATE IS NULL OR T1.ENDDATE >= CURRENT TIMESTAMP
ORDER BY T1.PRECEDENCE DESC
aStoreId
- the Store IDaFulfillmentCenterId
- the FulfillmentCenter IDaShippingModeId
- the ShippingMode IDjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.util.Enumeration findByStoreNullShipModeAndCurrentTime(java.lang.Integer aStoreId) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
Retrieves the ShippingArrangementAccessBeans that match the specified Store, with ShippingMode not specified, and are currently effective.
The SQL query used to fetch all the required rows from the
SHPARRANGE table is:
SELECT * FROM SHPARRANGE T1 WHERE
T1.STORE_ID = ? AND T1.SHIPMODE_ID IS NULL
AND (T1.STARTDATE IS NULL OR T1.STARTDATE <= CURRENT TIMESTAMP
AND (T1.ENDDATE IS NULL OR T1.ENDDATE >= CURRENT TIMESTAMP
ORDER BY T1.PRECEDENCE DESC
aStoreId
- the Store IDjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.util.Enumeration findByStoreShipModeAndCurrentTime(java.lang.Integer aStoreId, java.lang.Integer aShippingModeId) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException
Retrieves the ShippingArrangementAccessBeans that match the specified Store and ShippingMode, and are currently effective.
The SQL query used to fetch all the required rows from the
SHPARRANGE table is:
SELECT * FROM SHPARRANGE T1 WHERE
T1.STORE_ID = ? AND (T1.SHIPMODE_ID = ? or T1.SHIPMODE_ID IS NULL)
AND (T1.STARTDATE IS NULL OR T1.STARTDATE <= CURRENT TIMESTAMP
AND (T1.ENDDATE IS NULL OR T1.ENDDATE >= CURRENT TIMESTAMP
ORDER BY T1.PRECEDENCE DESC
aStoreId
- the Store IDaShippingModeId
- the ShippingMode IDjava.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.String getEndDate() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the SHPARRANGE.ENDDATE column of DB2 type TIMESTAMP NULL.
The following is a description of this column:
The time this ShippingArrangement stops being effective.
getEndDate
in interface ShippingArrangementAccessBeanData
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.sql.Timestamp getEndDateInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the SHPARRANGE.ENDDATE column of DB2 type TIMESTAMP NULL.
The following is a description of this column:
The time this ShippingArrangement stops being effective.
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.String getField1() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the SHPARRANGE.FIELD1 column of DB2 type VARCHAR(254) NULL.
The following is a description of this column:
Customizable.
getField1
in interface ShippingArrangementAccessBeanData
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.String getField2() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the SHPARRANGE.FIELD2 column of DB2 type INTEGER NULL.
The following is a description of this column:
Customizable.
getField2
in interface ShippingArrangementAccessBeanData
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.Integer getField2InEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the SHPARRANGE.FIELD2 column of DB2 type INTEGER NULL.
The following is a description of this column:
Customizable.
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.String getFlags() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the SHPARRANGE.FLAGS column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
Contains a low order bit flag. Refer to SHPARRANGE: details for more information.
getFlags
in interface ShippingArrangementAccessBeanData
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.Integer getFlagsInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the SHPARRANGE.FLAGS column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
Contains a low order bit flag. Refer to SHPARRANGE: details for more information.
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.String getFulfillmentCenterId() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the SHPARRANGE.FFMCENTER_ID column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
The FulfillmentCenter.
getFulfillmentCenterId
in interface ShippingArrangementAccessBeanData
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.Integer getFulfillmentCenterIdInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the SHPARRANGE.FFMCENTER_ID column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
The FulfillmentCenter.
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.String getPrecedence() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the SHPARRANGE.PRECEDENCE column of DB2 type FLOAT NOT NULL.
The following is a description of this column:
When more than one ShippingArrangement (for the same Store and ShippingMode) is effective at a particular time, the one with the highest precedence is used.
getPrecedence
in interface ShippingArrangementAccessBeanData
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.Double getPrecedenceInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the SHPARRANGE.PRECEDENCE column of DB2 type FLOAT NOT NULL.
The following is a description of this column:
When more than one ShippingArrangement (for the same Store and ShippingMode) is effective at a particular time, the one with the highest precedence is used.
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.String getShipArrangementId() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the SHPARRANGE.SHPARRANGE_ID column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
Generated unique key.
getShipArrangementId
in interface ShippingArrangementAccessBeanData
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.Integer getShipArrangementIdInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the SHPARRANGE.SHPARRANGE_ID column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
Generated unique key.
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.String getShipModeId() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the SHPARRANGE.SHIPMODE_ID column of DB2 type INTEGER NULL.
The following is a description of this column:
The ShippingMode. NULL indicates this ShippingArrangement can be used regardless of ShippingMode.
getShipModeId
in interface ShippingArrangementAccessBeanData
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.Integer getShipModeIdInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the SHPARRANGE.SHIPMODE_ID column of DB2 type INTEGER NULL.
The following is a description of this column:
The ShippingMode. NULL indicates this ShippingArrangement can be used regardless of ShippingMode.
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.String getStartDate() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the SHPARRANGE.STARTDATE column of DB2 type TIMESTAMP NULL.
The following is a description of this column:
The time this ShippingArrangement starts being effective.
getStartDate
in interface ShippingArrangementAccessBeanData
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.sql.Timestamp getStartDateInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the SHPARRANGE.STARTDATE column of DB2 type TIMESTAMP NULL.
The following is a description of this column:
The time this ShippingArrangement starts being effective.
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.String getStoreId() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the SHPARRANGE.STORE_ID column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
The Store.
getStoreId
in interface ShippingArrangementAccessBeanData
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.Integer getStoreIdInEJBType() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the SHPARRANGE.STORE_ID column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
The Store.
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic java.lang.String getTrackingNumber() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
This method provides access to the SHPARRANGE.TRACKINGNUMBER column of DB2 type VARCHAR(64) NULL.
The following is a description of this column:
Reserved for IBM internal use.
getTrackingNumber
in interface ShippingArrangementAccessBeanData
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic void refreshCopyHelper() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException
Load data from the EJBObject.
refreshCopyHelper
in class com.ibm.ivj.ejb.runtime.AbstractEntityAccessBean
java.rmi.RemoteException
- The java.rmi.RemoteException exceptionjavax.ejb.CreateException
- The javax.ejb.CreateException exceptionjavax.ejb.FinderException
- The javax.ejb.FinderException exceptionjavax.naming.NamingException
- The javax.naming.NamingException exceptionpublic void setEndDate(java.lang.String aEndDate)
This method provides access to the SHPARRANGE.ENDDATE column of DB2 type TIMESTAMP NULL.
The following is a description of this column:
The time this ShippingArrangement stops being effective.
setEndDate
in interface ShippingArrangementAccessBeanData
aEndDate
- java.lang.Stringpublic void setEndDate(java.sql.Timestamp aEndDate)
This method provides access to the SHPARRANGE.ENDDATE column of DB2 type TIMESTAMP NULL.
The following is a description of this column:
The time this ShippingArrangement stops being effective.
aEndDate
- java.sql.Timestamppublic void setField1(java.lang.String aField1)
This method provides access to the SHPARRANGE.FIELD1 column of DB2 type VARCHAR(254) NULL.
The following is a description of this column:
Customizable.
setField1
in interface ShippingArrangementAccessBeanData
aField1
- java.lang.Stringpublic void setField2(java.lang.Integer aField2)
This method provides access to the SHPARRANGE.FIELD2 column of DB2 type INTEGER NULL.
The following is a description of this column:
Customizable.
aField2
- java.lang.Integerpublic void setField2(java.lang.String aField2)
This method provides access to the SHPARRANGE.FIELD2 column of DB2 type INTEGER NULL.
The following is a description of this column:
Customizable.
setField2
in interface ShippingArrangementAccessBeanData
aField2
- java.lang.Stringpublic void setFlags(java.lang.Integer aFlags)
This method provides access to the SHPARRANGE.FLAGS column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
Contains a low order bit flag. Refer to SHPARRANGE: details for more information.
aFlags
- java.lang.Integerpublic void setFlags(java.lang.String aFlags)
This method provides access to the SHPARRANGE.FLAGS column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
Contains a low order bit flag. Refer to SHPARRANGE: details for more information.
setFlags
in interface ShippingArrangementAccessBeanData
aFlags
- java.lang.Stringpublic void setFulfillmentCenterId(java.lang.Integer aFulfillmentCenterId)
This method provides access to the SHPARRANGE.FFMCENTER_ID column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
The FulfillmentCenter.
aFulfillmentCenterId
- java.lang.Integerpublic void setFulfillmentCenterId(java.lang.String aFulfillmentCenterId)
This method provides access to the SHPARRANGE.FFMCENTER_ID column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
The FulfillmentCenter.
setFulfillmentCenterId
in interface ShippingArrangementAccessBeanData
aFulfillmentCenterId
- java.lang.Stringpublic void setInitKey_shipArrangementId(java.lang.String aInitKey_shipArrangementId)
Set the primary key for this object
aInitKey_shipArrangementId
- java.lang.Stringpublic void setPrecedence(java.lang.Double aPrecedence)
This method provides access to the SHPARRANGE.PRECEDENCE column of DB2 type FLOAT NOT NULL.
The following is a description of this column:
When more than one ShippingArrangement (for the same Store and ShippingMode) is effective at a particular time, the one with the highest precedence is used.
aPrecedence
- java.lang.Doublepublic void setPrecedence(java.lang.String aPrecedence)
This method provides access to the SHPARRANGE.PRECEDENCE column of DB2 type FLOAT NOT NULL.
The following is a description of this column:
When more than one ShippingArrangement (for the same Store and ShippingMode) is effective at a particular time, the one with the highest precedence is used.
setPrecedence
in interface ShippingArrangementAccessBeanData
aPrecedence
- java.lang.Stringpublic void setShipArrangementId(java.lang.Integer aShipArrangementId)
This method provides access to the SHPARRANGE.SHPARRANGE_ID column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
Generated unique key.
aShipArrangementId
- java.lang.Integerpublic void setShipArrangementId(java.lang.String aShipArrangementId)
This method provides access to the SHPARRANGE.SHPARRANGE_ID column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
Generated unique key.
setShipArrangementId
in interface ShippingArrangementAccessBeanData
aShipArrangementId
- java.lang.Stringpublic void setShipModeId(java.lang.Integer aShipModeId)
This method provides access to the SHPARRANGE.SHIPMODE_ID column of DB2 type INTEGER NULL.
The following is a description of this column:
The ShippingMode. NULL indicates this ShippingArrangement can be used regardless of ShippingMode.
aShipModeId
- java.lang.Integerpublic void setShipModeId(java.lang.String aShipModeId)
This method provides access to the SHPARRANGE.SHIPMODE_ID column of DB2 type INTEGER NULL.
The following is a description of this column:
The ShippingMode. NULL indicates this ShippingArrangement can be used regardless of ShippingMode.
setShipModeId
in interface ShippingArrangementAccessBeanData
aShipModeId
- java.lang.Stringpublic void setStartDate(java.lang.String aStartDate)
This method provides access to the SHPARRANGE.STARTDATE column of DB2 type TIMESTAMP NULL.
The following is a description of this column:
The time this ShippingArrangement starts being effective.
setStartDate
in interface ShippingArrangementAccessBeanData
aStartDate
- java.lang.Stringpublic void setStartDate(java.sql.Timestamp aStartDate)
This method provides access to the SHPARRANGE.STARTDATE column of DB2 type TIMESTAMP NULL.
The following is a description of this column:
The time this ShippingArrangement starts being effective.
aStartDate
- java.sql.Timestamppublic void setStoreId(java.lang.Integer aStoreId)
This method provides access to the SHPARRANGE.STORE_ID column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
The Store.
aStoreId
- java.lang.Integerpublic void setStoreId(java.lang.String aStoreId)
This method provides access to the SHPARRANGE.STORE_ID column of DB2 type INTEGER NOT NULL.
The following is a description of this column:
The Store.
setStoreId
in interface ShippingArrangementAccessBeanData
aStoreId
- java.lang.Stringpublic void setTrackingNumber(java.lang.String aTrackingNumber)
This method provides access to the SHPARRANGE.TRACKINGNUMBER column of DB2 type VARCHAR(64) NULL.
The following is a description of this column:
Reserved for IBM internal use.
setTrackingNumber
in interface ShippingArrangementAccessBeanData
aTrackingNumber
- java.lang.String
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |