© 2002 BEA Systems, Inc.


com.beasys.commerce.ebusiness.shipping
Class ShippingMethodImpl

java.lang.Object
  |
  +--com.beasys.commerce.foundation.EntityImpl
        |
        +--com.beasys.commerce.ebusiness.shipping.ShippingMethodImpl

public class ShippingMethodImpl
extends EntityImpl

A shipping method is a mechanism by which product is delivered. It stores a standard set of attributes and allows for complex shipping cost calculation.

 Primary Key = com.beasys.commerce.ebusiness.shipping.ShippingMethodPk
 

See Also:
ShippingMethod, ShippingMethodHome, ShippingMethodValue, Serialized Form

Field Summary
 int averageShippingTime
          The average delivery time.
 java.lang.String carrier
          The service provider used for delivery.
 java.lang.String costCalculationMechanism
          Used to specify one of the pre-programmed shipping cost calculation mechanisms.
 java.lang.String description
          An textual description of this shipping mechanism.
 java.lang.String identifier
          A key that uniquely identifies this shipping method.
 boolean internationalDelivery
          True if this mechanism will deliver internationally.
 java.lang.String method
          The mechanism by which the item will be shipped.
 java.lang.String packagingType
           Containment: By Value Multiplicity: 1:1
 double percentage
          Used when the shipping cost is a percentage of the total value of the order.
 boolean poBoxAllowed
          True if this mechanism will allow delivery to a post office box.
 Money price
          The base shipping cost.
 java.lang.String restrictions
          A description of any restrictions that apply to this shipping mechanism.
 boolean saturdayDelivery
          True if ths shipping mechanism will deliver on a Saturday.
 boolean signatureRequired
          True if the customer is required to acknowled delivery with a signature.
 double sizeLimit
          The maximum deliverable quantity.
 double weightLimit
          The maximum weight limit for this shipping mechanism.
 
Fields inherited from class com.beasys.commerce.foundation.EntityImpl
__classIdentifier, __containingEntity, __mapKey, __sequenceNumber, _ctx, _environmentNamingContext, _environmentPropertyCache, _isDirty, _smartBMP
 
Constructor Summary
ShippingMethodImpl()
           
 
Method Summary
protected  void bscInitializeAttributes(ShippingMethodPk shippingMethodPk)
           
 void ejbActivate()
           
 ShippingMethodPk ejbCreate(ShippingMethodPk shippingMethodPk)
           
 java.util.Enumeration ejbFindAll()
           
 ShippingMethodPk ejbFindByPrimaryKey(ShippingMethodPk pk)
           
 void ejbLoad()
           
 void ejbPassivate()
           
 void ejbPostCreate(ShippingMethodPk shippingMethodPk)
           
 void ejbRemove()
           
 void ejbStore()
           
 int getAverageShippingTime()
          Get the value of averageShippingTime
 java.lang.String getCarrier()
          Get the value of carrier
 java.lang.String getCostCalculationMechanism()
          Get the value of costCalculationMechanism
 java.lang.String getDescription()
          Get the value of description
 java.lang.String getIdentifier()
           
 boolean getInternationalDelivery()
          Get the value of internationalDelivery
 java.lang.String getMethod()
          Get the value of method
 java.lang.String getPackagingType()
          Get the value of packagingType
 double getPercentage()
          Get the value of percentage
 boolean getPoBoxAllowed()
          Get the value of poBoxAllowed
 Money getPrice()
          Get the value of price
 java.lang.String getRestrictions()
          Get the value of restrictions
 boolean getSaturdayDelivery()
          Get the value of saturdayDelivery
 ShippingMethodValue getShippingMethodByValue()
          Get all of ShippingMethod's attributes.
 boolean getSignatureRequired()
          Get the value of signatureRequired
 double getSizeLimit()
          Get the value of sizeLimit
 double getWeightLimit()
          Get the value of weightLimit
 void setAverageShippingTime(int averageShippingTime)
          Set the value of averageShippingTime
 void setCarrier(java.lang.String carrier)
          Set the value of carrier
 void setCostCalculationMechanism(java.lang.String costCalculationMechanism)
          Set the value of costCalculationMechanism
 void setDescription(java.lang.String description)
          Set the value of description
 void setEntityContext(javax.ejb.EntityContext ctx)
           
 void setIdentifier(java.lang.String value)
           
 void setInternationalDelivery(boolean internationalDelivery)
          Set the value of internationalDelivery
 void setMethod(java.lang.String method)
          Set the value of method
 void setPackagingType(java.lang.String packagingType)
          Set the value of packagingType
 void setPercentage(double percentage)
          Set the value of percentage
 void setPoBoxAllowed(boolean poBoxAllowed)
          Set the value of poBoxAllowed
 void setPrice(Money price)
          Set the value of price
 void setRestrictions(java.lang.String restrictions)
          Set the value of restrictions
 void setSaturdayDelivery(boolean saturdayDelivery)
          Set the value of saturdayDelivery
 void setShippingMethodByValue(ShippingMethodValue value)
          Set all of ShippingMethod's attributes to the passed in value.
 void setSignatureRequired(boolean signatureRequired)
          Set the value of signatureRequired
 void setSizeLimit(double sizeLimit)
          Set the value of sizeLimit
 void setWeightLimit(double weightLimit)
          Set the value of weightLimit
 void unsetEntityContext()
           
 
Methods inherited from class com.beasys.commerce.foundation.EntityImpl
bscInitializeAttributes, clearRelationalBinding, clearRelationalBinding, clearRelationalBinding, clearRelationalBinding, doRelationalBinding, doRelationalBinding, doRelationalBindingOnElement, doRelationalBindingOnElement, doRelationalBindingOnElement, doRelationalBindingOnSingleton, doRelationalBindingOnSingleton, doRelationalBindingOnSingleton, doRelationalBindingWithMapKey, doRelationalBindingWithMapKey, doRelationalBindingWithMapKey, ejbCreate, ejbFindByPrimaryKey, ejbPostCreate, enumerateRelationalBinding, enumerateRelationalBinding, get__classIdentifier, get__containingBelonging, get__containingEntity, get__containingEntityReference, get__mapKey, get__sequenceNumber, getEntityContext, getEnvironmentNamingContext, getEnvironmentProperty, getEnvironmentProperty, getEnvironmentPropertyCache, getPersistenceHelperPlugin, getSmartBMP, initSmartBMP, isModified, set__classIdentifier, set__containingBelonging, set__containingEntity, set__containingEntityReference, set__mapKey
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

identifier

public java.lang.String identifier
A key that uniquely identifies this shipping method.

sizeLimit

public double sizeLimit
The maximum deliverable quantity.

description

public java.lang.String description
An textual description of this shipping mechanism.

signatureRequired

public boolean signatureRequired
True if the customer is required to acknowled delivery with a signature.

weightLimit

public double weightLimit
The maximum weight limit for this shipping mechanism.

percentage

public double percentage
Used when the shipping cost is a percentage of the total value of the order.

poBoxAllowed

public boolean poBoxAllowed
True if this mechanism will allow delivery to a post office box.

restrictions

public java.lang.String restrictions
A description of any restrictions that apply to this shipping mechanism.

averageShippingTime

public int averageShippingTime
The average delivery time.

carrier

public java.lang.String carrier
The service provider used for delivery.

saturdayDelivery

public boolean saturdayDelivery
True if ths shipping mechanism will deliver on a Saturday.

price

public Money price
The base shipping cost.

packagingType

public java.lang.String packagingType

costCalculationMechanism

public java.lang.String costCalculationMechanism
Used to specify one of the pre-programmed shipping cost calculation mechanisms. Policy:Uses the Shipping Cost Calculation Policy to determine the total cost. FlatRate: A single flat rate price is returned as specified in the price field. PerItem: The count of items in the order is multiplied by the price field to determine the shipping cost. Percentage: The total cost of the order is multiplied by the percenate specified to determine the cost.

method

public java.lang.String method
The mechanism by which the item will be shipped. These include Air, Ship, Truck, etc..

internationalDelivery

public boolean internationalDelivery
True if this mechanism will deliver internationally.
Constructor Detail

ShippingMethodImpl

public ShippingMethodImpl()
Method Detail

getShippingMethodByValue

public ShippingMethodValue getShippingMethodByValue()
Get all of ShippingMethod's attributes.

Returns:
ShippingMethodValue the ShippingMethod value object

setShippingMethodByValue

public void setShippingMethodByValue(ShippingMethodValue value)
Set all of ShippingMethod's attributes to the passed in value. Note: Primary key attributes are not set.

Parameters:
ShippingMethodValue - the ShippingMethod value object

ejbCreate

public ShippingMethodPk ejbCreate(ShippingMethodPk shippingMethodPk)
                           throws javax.ejb.CreateException

bscInitializeAttributes

protected void bscInitializeAttributes(ShippingMethodPk shippingMethodPk)
                                throws javax.ejb.CreateException

ejbPostCreate

public void ejbPostCreate(ShippingMethodPk shippingMethodPk)
                   throws javax.ejb.CreateException

ejbLoad

public void ejbLoad()
             throws javax.ejb.EJBException

Overrides:
ejbLoad in class EntityImpl

ejbStore

public void ejbStore()
              throws javax.ejb.EJBException

Overrides:
ejbStore in class EntityImpl

ejbRemove

public void ejbRemove()
               throws javax.ejb.RemoveException

Overrides:
ejbRemove in class EntityImpl

ejbActivate

public void ejbActivate()
                 throws javax.ejb.EJBException

Overrides:
ejbActivate in class EntityImpl

ejbPassivate

public void ejbPassivate()
                  throws javax.ejb.EJBException

Overrides:
ejbPassivate in class EntityImpl

setEntityContext

public void setEntityContext(javax.ejb.EntityContext ctx)
                      throws javax.ejb.EJBException

Overrides:
setEntityContext in class EntityImpl

unsetEntityContext

public void unsetEntityContext()
                        throws javax.ejb.EJBException

Overrides:
unsetEntityContext in class EntityImpl

ejbFindByPrimaryKey

public ShippingMethodPk ejbFindByPrimaryKey(ShippingMethodPk pk)
                                     throws javax.ejb.FinderException

getSizeLimit

public double getSizeLimit()
Get the value of sizeLimit

Returns:
sizeLimit.

setSizeLimit

public void setSizeLimit(double sizeLimit)
Set the value of sizeLimit

Parameters:
sizeLimit - sizeLimit to be added

getDescription

public java.lang.String getDescription()
Get the value of description

Returns:
description.

setDescription

public void setDescription(java.lang.String description)
Set the value of description

Parameters:
description - description to be added

getSignatureRequired

public boolean getSignatureRequired()
Get the value of signatureRequired

Returns:
signatureRequired.

setSignatureRequired

public void setSignatureRequired(boolean signatureRequired)
Set the value of signatureRequired

Parameters:
signatureRequired - signatureRequired to be added

getWeightLimit

public double getWeightLimit()
Get the value of weightLimit

Returns:
weightLimit.

setWeightLimit

public void setWeightLimit(double weightLimit)
Set the value of weightLimit

Parameters:
weightLimit - weightLimit to be added

getPercentage

public double getPercentage()
Get the value of percentage

Returns:
percentage.

setPercentage

public void setPercentage(double percentage)
Set the value of percentage

Parameters:
percentage - percentage to be added

getIdentifier

public java.lang.String getIdentifier()

setIdentifier

public void setIdentifier(java.lang.String value)

getPoBoxAllowed

public boolean getPoBoxAllowed()
Get the value of poBoxAllowed

Returns:
poBoxAllowed.

setPoBoxAllowed

public void setPoBoxAllowed(boolean poBoxAllowed)
Set the value of poBoxAllowed

Parameters:
poBoxAllowed - poBoxAllowed to be added

getRestrictions

public java.lang.String getRestrictions()
Get the value of restrictions

Returns:
restrictions.

setRestrictions

public void setRestrictions(java.lang.String restrictions)
Set the value of restrictions

Parameters:
restrictions - restrictions to be added

getAverageShippingTime

public int getAverageShippingTime()
Get the value of averageShippingTime

Returns:
averageShippingTime.

setAverageShippingTime

public void setAverageShippingTime(int averageShippingTime)
Set the value of averageShippingTime

Parameters:
averageShippingTime - averageShippingTime to be added

getCarrier

public java.lang.String getCarrier()
Get the value of carrier

Returns:
carrier.

setCarrier

public void setCarrier(java.lang.String carrier)
Set the value of carrier

Parameters:
carrier - carrier to be added

getSaturdayDelivery

public boolean getSaturdayDelivery()
Get the value of saturdayDelivery

Returns:
saturdayDelivery.

setSaturdayDelivery

public void setSaturdayDelivery(boolean saturdayDelivery)
Set the value of saturdayDelivery

Parameters:
saturdayDelivery - saturdayDelivery to be added

getPrice

public Money getPrice()
Get the value of price

Returns:
price.

setPrice

public void setPrice(Money price)
Set the value of price

Parameters:
price - price to be added

getPackagingType

public java.lang.String getPackagingType()
Get the value of packagingType

Returns:
packagingType.

setPackagingType

public void setPackagingType(java.lang.String packagingType)
Set the value of packagingType

Parameters:
packagingType - packagingType to be added

getCostCalculationMechanism

public java.lang.String getCostCalculationMechanism()
Get the value of costCalculationMechanism

Returns:
costCalculationMechanism.

setCostCalculationMechanism

public void setCostCalculationMechanism(java.lang.String costCalculationMechanism)
Set the value of costCalculationMechanism

Parameters:
costCalculationMechanism - costCalculationMechanism to be added

getMethod

public java.lang.String getMethod()
Get the value of method

Returns:
method.

setMethod

public void setMethod(java.lang.String method)
Set the value of method

Parameters:
method - method to be added

getInternationalDelivery

public boolean getInternationalDelivery()
Get the value of internationalDelivery

Returns:
internationalDelivery.

setInternationalDelivery

public void setInternationalDelivery(boolean internationalDelivery)
Set the value of internationalDelivery

Parameters:
internationalDelivery - internationalDelivery to be added

ejbFindAll

public java.util.Enumeration ejbFindAll()
                                 throws javax.ejb.FinderException

Overrides:
ejbFindAll in class EntityImpl

© 2002 BEA Systems, Inc.

Copyright © 2002 BEA Systems, Inc. All Rights Reserved