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.db.util |
DPS Flash specific database related handlers and background processing tasks.
|
com.dpslink.flash.erp |
DPS Flash specific interfaces and abstract classes on which all backend interface classes are based.
|
com.dpslink.flash.erp.bogus |
DPS Flash specific pseudo implementations for
com.dpslink.flash.erp interfaces and abstract classes. |
com.dpslink.flash.erp.extend |
DPS Flash specific DPS Extend implementations for
com.dpslink.flash.erp interfaces and abstract classes. |
com.dpslink.flash.imports |
DPS Flash specific parsers and processors for importing data from delimited text files or from Excel spreadsheet files.
|
com.dpslink.flash.servlet |
DPS Flash specific servlets for handling shopping functions.
|
com.dpslink.flash.servlet.admin |
DPS Flash specific servlets for handling administration functions.
|
com.dpslink.flash.util |
DPS Flash specific utility helper classes used throughout all other
com.dpslink.flash classes. |
Modifier and Type | Field and Description |
---|---|
static java.lang.Class<Cart> |
DBO.CART
The cart object class.
|
Modifier and Type | Method and Description |
---|---|
Cart |
CartController.get(java.lang.String id)
Returns the cart record for the given cart id.
|
Cart |
CartController.valuesToObject(java.util.HashMap<java.lang.String,java.lang.Object> attrs)
Returns a database object from the given set of attributes.
|
Modifier and Type | Method and Description |
---|---|
java.util.ArrayList<Cart> |
CartController.getPurge(java.lang.String type,
java.util.Date asof)
Returns a collection of cart records that have not been accessed since the
given date.
|
Modifier and Type | Method and Description |
---|---|
boolean |
OrderAuditLineController.addFromCart(Cart cart)
Adds new order audit line records to the database table for the given
shopping cart's cart lines, confirmation lines and adjustment lines.
|
boolean |
OrderAuditController.addFromCart(Cart cart,
User user)
Adds a new order audit record to the database table based on the contents
of the given shopping cart.
|
boolean |
CartController.delete(Cart obj)
Deletes an existing record from the table associated with the controller.
|
boolean |
CartLineController.deleteCart(Cart cart)
Deletes all cart line records for a cart.
|
java.util.ArrayList<CartLine> |
CartLineController.getCart(FlashServletContext ctx,
Cart cart)
Returns a collection of all cart lines for a cart.
|
Modifier and Type | Method and Description |
---|---|
Cart |
UserFavoritesHandler.createNewCart()
Creates a new favorites cart and persists it to the database.
|
Cart |
UserFavoritesHandler.createNewList(User user,
java.lang.String description)
Creates a new favorites list for a user.
|
Cart |
UserFavoritesHandler.getCart()
Returns the shopping user's current favorites cart.
|
Modifier and Type | Method and Description |
---|---|
void |
UserCatalogVerifier.verifyCartLines(Cart cart)
Verifies that each product within the given cart's set of cart lines is in
the user's catalog and/or in the user's set of permits.
|
Modifier and Type | Method and Description |
---|---|
boolean |
IOrderPlacement.createOrder(Cart cart)
Creates a new order on the ERP system.
|
boolean |
IOrderPlacement.createQuote(Cart cart)
Creates a new quote on the ERP system.
|
boolean |
IOrderPlacement.requestQuotation(Cart cart)
Sets order totals, taxes, freight, etc.
|
Modifier and Type | Field and Description |
---|---|
protected Cart |
OrderPlacement.ivCart
The supplied shopping cart object.
|
Modifier and Type | Method and Description |
---|---|
boolean |
OrderPlacement.createOrder(Cart cart)
Creates a new order on the ERP system.
|
boolean |
OrderPlacement.createQuote(Cart cart)
Creates a new quote on the ERP system.
|
boolean |
OrderPlacement.requestQuotation(Cart cart)
Sets order totals, taxes, freight, etc.
|
Modifier and Type | Field and Description |
---|---|
protected Cart |
OrderPlacement.ivCart
The supplied shopping cart object.
|
Modifier and Type | Method and Description |
---|---|
boolean |
OrderPlacement.createOrder(Cart cart)
Creates a new order on the ERP system.
|
boolean |
OrderPlacement.createQuote(Cart cart)
Creates a new quote on the ERP system.
|
boolean |
OrderPlacement.requestQuotation(Cart cart)
Sets order totals, taxes, freight, etc.
|
Modifier and Type | Field and Description |
---|---|
private Cart |
FavoritesDescriptorImport.ivCart
A favorites cart.
|
private Cart |
FavoritesItemImport.ivCart
A favorites cart.
|
Modifier and Type | Field and Description |
---|---|
protected Cart |
FlashServlet.Context.sessionCart
The current session's shopping cart.
|
Modifier and Type | Method and Description |
---|---|
Cart |
FlashServletContext.getShoppingCart()
Returns the current shopping cart.
|
Cart |
FlashServlet.Context.getShoppingCart()
Returns the current shopping cart.
|
Modifier and Type | Method and Description |
---|---|
protected void |
FlashServlet.setSessionCart(FlashServlet.Context ctx,
Cart cart,
boolean newCart)
Sets the session's shopping cart to the given cart.
|
protected void |
OrderRequestAPI.Context.setShoppingCart(Cart cart)
Sets the context's shopping cart.
|
protected void |
ClientRequest.Context.setShoppingCart(Cart cart)
Sets the context's shopping cart.
|
Modifier and Type | Method and Description |
---|---|
protected java.util.ArrayList<Cart> |
AdmPurgeFavorites.getPurgeRecords(AdmPurge.Context ctx)
Returns a collection of records that match the purge criteria.
|
protected java.util.ArrayList<Cart> |
AdmPurgeCarts.getPurgeRecords(AdmPurge.Context ctx)
Returns a collection of records that match the purge criteria.
|
Modifier and Type | Method and Description |
---|---|
Cart |
ThreadServletContext.getShoppingCart()
Returns the context's shopping cart.
|