Package | Description |
---|---|
com.dpslink.flash.db |
DPS Flash specific definitions for database objects and database object controllers as well as other non-persisted business related objects.
|
com.dpslink.flash.servlet.admin |
DPS Flash specific servlets for handling administration functions.
|
com.dpslink.flash.test |
DPS Flash specific command line classes for various test scenarios.
|
Modifier and Type | Field and Description |
---|---|
static java.lang.Class<Shipper> |
DBO.SHIPPER
The shipper object class.
|
Modifier and Type | Method and Description |
---|---|
Shipper |
ShipperController.get(java.lang.String code)
Returns the shipper record for the given shipper code.
|
Shipper |
Cart.getConfirmShipper()
(not persisted) Returns the confirmed shipper object.
|
Shipper |
Cart.getShipper()
(not persisted) Returns the shipper object.
|
Modifier and Type | Method and Description |
---|---|
java.util.ArrayList<Shipper> |
ShipperController.getAll()
Returns a collection of all records in the table associated with the
controller.
|
java.util.ArrayList<Shipper> |
ShipperController.getValid(java.lang.String country,
boolean isCommercial)
Returns a collection of the shipper records for a country code and "is
commercial" flag.
|
Modifier and Type | Method and Description |
---|---|
boolean |
ShipperController.delete(Shipper obj)
Deletes an existing record from the table associated with the controller.
|
void |
Cart.setConfirmShipper(Shipper value)
(not persisted) Sets the confirmed shipper object.
|
void |
Cart.setShipper(Shipper value)
(not persisted) Sets the shipper object.
|
Modifier and Type | Method and Description |
---|---|
protected Select |
ShipperController.getUISelect(java.util.ArrayList<Shipper> objlist,
java.lang.String code)
Returns an HTML
Select object that contains the shippers in the
given collection and has the given code as the preselected code in the set
of options. |
Modifier and Type | Field and Description |
---|---|
protected Shipper |
AdmShipperAddEdit.Context.dbObject
The current object being added or edited.
|
protected Shipper |
AdmShipperSelect.Context.selectObj
The current selected object.
|
Modifier and Type | Field and Description |
---|---|
protected java.util.ArrayList<Shipper> |
AdmShipperSelect.Context.selectList
The current list of selection objects.
|
protected java.util.ArrayList<Shipper> |
AdmShipperAddEdit.Context.selectList
The select servlet's current list of selection objects.
|
Modifier and Type | Method and Description |
---|---|
private Shipper |
AdmTestSiteEmails.getSampleShipper(AdmTestSiteEmails.Context ctx)
Returns a Shipper object using values from the configured sample data
spreadsheet file.
|
Modifier and Type | Method and Description |
---|---|
protected static Shipper |
TestNFMessages.getSampleShipper()
Returns a Shipper object using values from the configured sample data
spreadsheet file.
|