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.search |
DPS Flash specific product search indexing and product search processing classes.
|
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.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.servlet.demo |
DPS Flash specific servlets for handling demo site functions.
|
com.dpslink.flash.servlet.sat |
DPS Flash specific servlets for handling site activity and trends functions.
|
com.dpslink.flash.servlet.sfi |
DPS Flash specific servlets for handling sales force interface functions.
|
com.dpslink.flash.servlet.test |
DPS Flash specific servlets for handling test scenarios.
|
com.dpslink.flash.util |
DPS Flash specific utility helper classes used throughout all other
com.dpslink.flash classes. |
Modifier and Type | Method and Description |
---|---|
boolean |
Cart.addCartLine(FlashServletContext ctx,
CartLine cartline)
Adds a new cart line to this cart's collection of cart lines and to the
cart line database table.
|
boolean |
Cart.addCartLine(FlashServletContext ctx,
Product product,
int quantity)
Adds a new cart line to this cart's collection of cart lines and to the
cart line database table.
|
boolean |
Cart.addCartLine(FlashServletContext ctx,
Product product,
int quantity,
UnitMeasure orderuom,
UnitMeasure priceuom)
Adds a new cart line to this cart's collection of cart lines and to the
cart line database table.
|
boolean |
Cart.addCartLines(FlashServletContext ctx,
java.util.ArrayList<Product> products,
java.util.ArrayList<java.lang.Integer> quantities)
Adds one or more new cart lines to this cart's collection of cart lines
and to the cart line database table.
|
boolean |
Cart.addCartLines(FlashServletContext ctx,
java.util.ArrayList<Product> products,
java.util.ArrayList<java.lang.Integer> quantities,
java.util.ArrayList<UnitMeasure> orderuoms,
java.util.ArrayList<UnitMeasure> priceuoms)
Adds one or more new cart lines to this cart's collection of cart lines
and to the cart line database table.
|
boolean |
Cart.deleteCartLine(FlashServletContext ctx,
CartLine cartline)
Deletes a cart line from the cartline database table.
|
boolean |
Cart.deleteCartLine(FlashServletContext ctx,
int index)
Deletes a cart line from this cart's collection of cart lines and also
deletes the cart line from the cart line database table.
|
boolean |
Cart.deleteCartLines(FlashServletContext ctx)
Deletes all cart lines from the collection of cart lines and from the
cart line database table.
|
boolean |
Cart.deleteCartLines(FlashServletContext ctx,
java.util.ArrayList<java.lang.Integer> indexes)
Deletes one or more cart lines from this cart's collection of cart lines
and also deletes the cart lines from the cart line database table.
|
Product |
ProductController.get(FlashServletContext ctx,
java.lang.String code,
java.lang.String uom)
Returns the product record for the given product code and unit of
measure code.
|
java.util.ArrayList<Category> |
Category.get1stChildren(FlashServletContext ctx)
Returns a collection of category objects for the first level children of
this category.
|
java.util.ArrayList<Category> |
Category.get1stParents(FlashServletContext ctx)
Returns a collection of category objects for the first level parents of
this category.
|
java.util.ArrayList<Category> |
Category.getAllChildren(FlashServletContext ctx,
boolean unique)
Returns a collection of category objects for all levels of children of
this category.
|
Product |
ProductController.getAutoComplete(FlashServletContext ctx,
java.lang.String code,
java.lang.String uom)
Returns the product record for the given code and unit of measure code.
|
java.util.ArrayList<java.lang.String> |
ProductController.getAutoCompleteCodes(FlashServletContext ctx,
java.lang.String chars)
Returns a collection of codes that begin with the given characters.
|
java.util.ArrayList<java.lang.String[]> |
ProductController.getAutoCompleteUoms(FlashServletContext ctx,
java.lang.String code)
Returns a collection of unit of measure codes and descriptions for the
given code.
|
private Customer |
CreditCard.getBilltoCustomer(FlashServletContext ctx)
Returns the credit card's bill-to customer.
|
java.util.ArrayList<CartLine> |
CartLineController.getCart(FlashServletContext ctx,
Cart cart)
Returns a collection of all cart lines for a cart.
|
CartLine |
Cart.getCartLine(FlashServletContext ctx,
int index)
Returns the cart line at the given index.
|
java.util.ArrayList<CartLine> |
Cart.getCartLines(FlashServletContext ctx)
Returns the collection of cart lines for this cart.
|
int |
Cart.getCartLinesQuantity(FlashServletContext ctx)
Returns the total quantity of all cart lines for this cart.
|
Category |
Product.getCategory(FlashServletContext ctx)
Returns the default category.
|
java.util.ArrayList<Product> |
ProductController.getCategory(FlashServletContext ctx,
java.lang.String code)
Returns a collection of the product records for the given category code.
|
ProductAttributeDescriptor |
ProductAttribute.getDescriptor(FlashServletContext ctx)
Returns the attribute descriptor.
|
java.util.ArrayList<Product> |
ProductController.getForCode(FlashServletContext ctx,
java.lang.String code)
Returns a collection of products that have the same product code.
|
java.util.ArrayList<Product> |
ProductController.getInStock(FlashServletContext ctx,
java.util.ArrayList<Product> products)
Returns a collection of product records that have stock using the given
collection of product records as the source for determining the results.
|
java.util.ArrayList<Product> |
ProductController.getInStock(FlashServletContext ctx,
java.util.ArrayList<Product> products,
boolean realtime)
Returns a collection of product records that have stock using the given
collection of product records as the source for determining the results.
|
java.util.ArrayList<Product> |
ProductController.getMatching(FlashServletContext ctx,
java.lang.String strCriteria,
java.util.ArrayList<java.lang.String[]> attrCriteria)
Returns a collection of
Product objects that have
product codes or product descriptions containing characters matching
the query search string. |
java.util.ArrayList<Product> |
ProductController.getMatchingByStringCriteria(FlashServletContext ctx,
java.lang.String strCriteria)
Returns a collection of
Product objects that have
product codes or product descriptions containing characters matching
the query search string. |
java.util.ArrayList<Category> |
Category.getPathFromParent(FlashServletContext ctx,
Category parent)
Returns a collection of category objects for the path to this category,
starting with the given parent category.
|
java.util.ArrayList<Category> |
Category.getPathToParent(FlashServletContext ctx,
Category parent)
Returns a collection of category for the path from this category, ending
with the given parent category.
|
SecurityProfile |
User.getSecurityProfile(FlashServletContext ctx)
Returns the security profile.
|
java.util.ArrayList<Special> |
SpecialController.getType(FlashServletContext ctx,
java.lang.String type)
Returns a collection of the special records for the given specials type code.
|
User |
CreditCard.getUser(FlashServletContext ctx)
Returns the user who owns the credit card.
|
java.lang.String |
CreditCard.getVerificationAddress(FlashServletContext ctx)
Returns the credit card's verification street address, which is the override
address if one exists for this credit card; otherwise, it is the first non
blank address line for the bill-to customer for the user associated with
this credit card.
|
java.lang.String |
CreditCard.getVerificationPostalCode(FlashServletContext ctx)
Returns the credit card's verification postal code, which is the override
postal code if one exists for this credit card; otherwise, it is the postal
verification code for the bill-to customer for the user associated with
this credit card.
|
void |
ProductController.includeLeadtimes(FlashServletContext ctx,
java.util.ArrayList<Product> products)
Iterates through the given collection of products and retains the products
having a leadtime that is in the condigured set of leadtimes to include
(LT_INCLUDE).
|
boolean |
Category.isDescendant(FlashServletContext ctx,
Category parent)
Determines if this category is a descendant (child, grandchild, etc.) of
the given parent category.
|
int |
Cart.isProductInCart(FlashServletContext ctx,
Product product)
Answers if a given product is already in the cart.
|
void |
Cart.refreshCartLines(FlashServletContext ctx)
Refreshes the cart's cart lines.
|
Manufacturer |
Product.rtvMfr(FlashServletContext ctx)
Retrieves
Manufacturer object associated with this product. |
void |
Product.rtvOnOrderFromSupplierDetail(FlashServletContext ctx)
(not persisted) Retrieves supplier on-order data from the ERP system and
sets the product's collection.
|
void |
Product.rtvQtyBreakPricing(FlashServletContext ctx)
(not persisted) Retrieves quantity break pricing from the ERP system and
sets the product's collection.
|
void |
Product.rtvWarehouseQtys(FlashServletContext ctx)
(not persisted) Retrieves warehouse quantities from the ERP system and
sets the product's collection.
|
void |
Cart.setRealtimeInfo(FlashServletContext ctx)
Sets the realtime information (current price, availability, etc.) for
each product within this cart's set of cart lines.
|
private void |
Cart.setRealtimeInfo(FlashServletContext ctx,
java.util.ArrayList<CartLine> cartlines)
Sets the realtime information (current price, availability, etc.) for
each product within a given set of cart lines.
|
void |
ProductController.setRealtimeInfo(FlashServletContext ctx,
java.lang.Object requestor,
java.util.ArrayList<Product> products,
int indxBeg,
int indxEnd,
boolean force)
Sets the realtime information (current price, availability, etc.) for
each product within a given set of products.
|
void |
ProductController.setRealtimeInfo(FlashServletContext ctx,
java.lang.Object requestor,
Product product,
boolean force)
Sets the realtime information (current price, availability, etc.) for
each product within a given set of products.
|
boolean |
Cart.updateCartLine(FlashServletContext ctx,
CartLine cartline)
Updates a cart line in the collection of cart lines and in the cart line
database table.
|
boolean |
Cart.updateCartLine(FlashServletContext ctx,
int index,
int quantity,
UnitMeasure orderuom,
UnitMeasure priceuom)
Updates the values for a cart line in the collection of cart lines and
in the cart line database table.
|
boolean |
Cart.updateCartLines(FlashServletContext ctx,
java.util.ArrayList<java.lang.Integer> quantities,
java.util.ArrayList<UnitMeasure> orderuoms,
java.util.ArrayList<UnitMeasure> priceuoms)
Updates the values for one or more cart lines in the collection of cart
lines and in the cart line database table.
|
boolean |
Cart.updateLastAccess(FlashServletContext ctx)
Updates the last time the shopping cart or favorite items was accessed
to the current date and time.
|
Modifier and Type | Method and Description |
---|---|
java.util.ArrayList<Product> |
ProductSearch1.getMatchingProducts(FlashServletContext ctx,
java.lang.String searchString,
java.util.ArrayList<java.lang.String[]> searchAttributes)
Returns a list of products that match the given search criteria and are
in the session user's catalog.
|
java.util.ArrayList<Product> |
ProductSearchInterface.getMatchingProducts(FlashServletContext ctx,
java.lang.String searchString,
java.util.ArrayList<java.lang.String[]> searchAttributes)
Returns a list of products that match the given search criteria and are
in the session user's catalog.
|
java.util.ArrayList<Product> |
ProductSearch3.getMatchingProducts(FlashServletContext ctx,
java.lang.String searchString,
java.util.ArrayList<java.lang.String[]> searchAttributes)
Returns a list of products that match the given search criteria and are
in the session user's catalog.
|
java.util.ArrayList<Product> |
ProductSearch2.getMatchingProducts(FlashServletContext ctx,
java.lang.String searchString,
java.util.ArrayList<java.lang.String[]> searchAttributes)
Returns a list of products that match the given search criteria and are
in the session user's catalog.
|
java.util.ArrayList<Product> |
ProductSearch1.getMatchingProducts(FlashServletContext ctx,
java.lang.String searchString,
java.util.ArrayList<java.lang.String[]> searchAttributes,
java.lang.String catcat,
int maxhits)
Returns a list of products that match the given search criteria and are
in the given catalog category.
|
java.util.ArrayList<Product> |
ProductSearchInterface.getMatchingProducts(FlashServletContext ctx,
java.lang.String searchString,
java.util.ArrayList<java.lang.String[]> searchAttributes,
java.lang.String catcat,
int maxhits)
Returns a list of products that match the given search criteria and are
in the given catalog category.
|
java.util.ArrayList<Product> |
ProductSearch3.getMatchingProducts(FlashServletContext ctx,
java.lang.String searchString,
java.util.ArrayList<java.lang.String[]> searchAttributes,
java.lang.String catcat,
int maxhits)
Returns a list of products that match the given search criteria and are
in the given catalog category.
|
java.util.ArrayList<Product> |
ProductSearch2.getMatchingProducts(FlashServletContext ctx,
java.lang.String searchString,
java.util.ArrayList<java.lang.String[]> searchAttributes,
java.lang.String catcat,
int maxhits)
Returns a list of products that match the given search criteria and are
in the given catalog category.
|
protected void |
ProductSearch3.setRealtimeInfo(FlashServletContext ctx,
java.util.ArrayList<Product> products)
Sets the realtime data for a given set of products
|
Modifier and Type | Field and Description |
---|---|
protected FlashServletContext |
DBUTask.ivContext
The current context for the servlet or thread using the task.
|
protected FlashServletContext |
DBUHandler.ivContext
The current context for the servlet or thread using the handler.
|
Modifier and Type | Method and Description |
---|---|
FlashServletContext |
DBUTask.getContext()
Returns the class' servlet context (i.e.
|
FlashServletContext |
DBUInterface.getContext()
Returns the class' servlet context (i.e.
|
FlashServletContext |
DBUHandler.getContext()
Returns the class' servlet context (i.e.
|
Modifier and Type | Method and Description |
---|---|
static <DBUTL extends DBUInterface> |
DBUFactory.getObject(java.lang.Class<DBUTL> objcls,
FlashServletContext ctx)
Returns the database utility object for the given object class with the
given servlet or thread context.
|
void |
UserCatalogVerifier.setContext(FlashServletContext ctx)
Sets the class' servlet context (i.e.
|
void |
DBUTask.setContext(FlashServletContext ctx)
Sets the class' servlet context (i.e.
|
void |
DBUInterface.setContext(FlashServletContext ctx)
Sets the class' servlet context (i.e.
|
void |
AccountCreateHandler.setContext(FlashServletContext ctx)
Sets the class' servlet context (i.e.
|
void |
AccountDeleteHandler.setContext(FlashServletContext ctx)
Sets the class' servlet context (i.e.
|
void |
DBUHandler.setContext(FlashServletContext ctx)
Sets the class' servlet context (i.e.
|
Modifier and Type | Method and Description |
---|---|
FlashServletContext |
ERPInterfaceAS400.getContext()
Returns the ERP interface's servlet context (i.e.
|
FlashServletContext |
ERPInterface.getContext()
Returns the ERP interface's servlet context (i.e.
|
FlashServletContext |
ERPInterfaceBogus.getContext()
Returns the ERP interface's servlet context (i.e.
|
Modifier and Type | Method and Description |
---|---|
static <ERPTYPE extends ERPInterface> |
ERPFactory.getInterface(java.lang.Class<ERPTYPE> type,
FlashServletContext ctx)
Returns the ERP interface for the given interface type with the given
servlet or thread context.
|
void |
ERPInterfaceAS400.setContext(FlashServletContext ctx)
Sets the ERP interface's servlet context (i.e.
|
void |
ERPInterface.setContext(FlashServletContext ctx)
Sets the ERP interface's servlet context (i.e.
|
void |
ERPInterfaceBogus.setContext(FlashServletContext ctx)
Sets the ERP interface's servlet context (i.e.
|
Modifier and Type | Field and Description |
---|---|
private FlashServletContext |
ImportProcessor.ivContext
The current context for the servlet or thread using this class.
|
protected FlashServletContext |
Import.ivContext
The current context for the servlet or thread using the object.
|
private FlashServletContext |
ImportFileReader.ivContext
The current context for the servlet or thread using this class.
|
Modifier and Type | Method and Description |
---|---|
FlashServletContext |
ImportProcessor.getContext()
Returns the current context for the servlet or thread using this class.
|
FlashServletContext |
Import.getContext()
Returns the import object's servlet context (i.e.
|
FlashServletContext |
ImportFileReader.getContext()
Returns the current context for the servlet or thread using this class.
|
Modifier and Type | Method and Description |
---|---|
void |
Import.setContext(FlashServletContext ctx)
Sets the import object's servlet context (i.e.
|
void |
UserImport.setContext(FlashServletContext ctx)
Sets the import object's servlet context (i.e.
|
Constructor and Description |
---|
ImportFileReader(FlashServletContext ctx)
Constructs a new instance of the import file reader class with the given
servlet or thread context.
|
ImportProcessor(FlashServletContext ctx)
Constructs a new instance of the import processor class with the given
servlet or thread context.
|
Modifier and Type | Class and Description |
---|---|
protected class |
AccountBillingAddEdit.Context
Inner class used to store servlet context information.
|
protected class |
AccountContactAddEdit.Context
Inner class used to store servlet context information.
|
protected class |
AccountCreditCardAddEdit.Context
Inner class used to store servlet context information.
|
protected class |
AccountCreditCardSelect.Context
Inner class used to store servlet context information.
|
protected class |
AccountLogonAddEdit.Context
Inner class used to store servlet context information.
|
protected class |
AccountLogonViewId.Context
Inner class used to store servlet context information.
|
protected class |
AccountPasswordEdit.Context
Inner class used to store servlet context information.
|
protected class |
AccountProfile.Context
Inner class used to store servlet context information.
|
protected class |
AccountServlet.Context
Inner class used to store servlet context information.
|
protected class |
AccountShippingAddEdit.Context
Inner class used to store servlet context information.
|
protected class |
AccountShippingSelect.Context
Inner class used to store servlet context information.
|
protected class |
CartLineEdit.Context
Inner class used to store servlet context information.
|
protected class |
CheckOut.Context
Inner class used to store servlet context information.
|
class |
ClientRequest.Context
Inner class used to store servlet context information.
|
protected class |
ConfirmOrder.Context
Inner class used to store servlet context information.
|
protected class |
FavoriteAddEdit.Context
Inner class used to store servlet context information.
|
class |
FavoriteItems.Context
Inner class used to store servlet context information.
|
class |
FlashServlet.Context
Inner class used to store servlet context information.
|
protected class |
Home.Context
Inner class used to store servlet context information.
|
protected class |
InvoiceHistory.Context
Inner class used to store servlet context information.
|
protected class |
Logoff.Context
Inner class used to store servlet context information.
|
protected class |
Logon.Context
Inner class used to store servlet context information.
|
protected class |
LogonAssistance.Context
Inner class used to store servlet context information.
|
protected class |
LogonFirst.Context
Inner class used to store servlet context information.
|
protected class |
LogonShippingSelect.Context
Inner class used to store servlet context information.
|
protected class |
LogonUser.Context
Inner class used to store servlet context information.
|
protected class |
MainPagingServlet.Context
Inner class used to store servlet context information.
|
protected class |
MainServlet.Context
Inner class used to store servlet context information.
|
protected class |
OrderDetails.Context
Inner class used to store servlet context information.
|
class |
OrderRequestAPI.Context
Inner class used to store servlet context information.
|
protected class |
OrderSummary.Context
Inner class used to store servlet context information.
|
protected class |
OrderToExcel.Context
Inner class used to store servlet context information.
|
protected class |
ProductCompare.Context
Inner class used to store servlet context information.
|
class |
ProductDetails.Context
Inner class used to store servlet context information.
|
protected class |
Products.Context
Inner class used to store servlet context information.
|
protected class |
ProductSearch.Context
Inner class used to store servlet context information.
|
protected class |
ProductSearchResults.Context
Inner class used to store servlet context information.
|
protected class |
ProductSpecial.Context
Inner class used to store servlet context information.
|
protected class |
ProductWarehouseDetail.Context
Inner class used to store servlet context information.
|
protected class |
PunchOut.Context
Inner class used to store servlet context information.
|
protected class |
QuickOrder.Context
Inner class used to store servlet context information.
|
protected class |
ReorderRejects.Context
Inner class used to store servlet context information.
|
class |
ReviewCart.Context
Inner class used to store servlet context information.
|
protected class |
ScriptRequest.Context
Inner class used to store servlet context information.
|
protected class |
ShipmentDetails.Context
Inner class used to store servlet context information.
|
protected class |
StaticPage.Context
Inner class used to store servlet context information.
|
protected class |
UserHelp.Context
Inner class used to store servlet context information.
|
Modifier and Type | Method and Description |
---|---|
static java.util.ArrayList<ProductSearch.SelectableAttribute> |
ProductSearch.getSearchAttributes(FlashServletContext ctx)
Returns the set of selectable attributes that were used to generate the
current search results.
|
static ProductSearchInterface |
ProductSearch.getSearchInterface(FlashServletContext ctx)
Returns an instance of the configured product search interface per the
"Product.Search.class" property value.
|
static java.lang.String |
ProductSearch.getSearchWord(FlashServletContext ctx)
Returns the search word that was used to generate the current search results.
|
static boolean |
ProductSearch.isSearch3Interface(FlashServletContext ctx)
Answers if the configured product search interface is an instance of
or a subclasss of product search 3.
|
static boolean |
ProductSearch.isSearchRealtimeInfoSet(FlashServletContext ctx)
Answers if realtime pricing and availablity was retrieved for the current
list of products when the search was performed.
|
static boolean |
ProductSearch.isShowAttributes(FlashServletContext ctx)
Answers if product attributes are configured to be shown on the search page
per the
ProductSearch.Show.Attributes properties value. |
Constructor and Description |
---|
FlashServletRequest(FlashServletContext ctx)
Constructs a new servlet request object.
|
FlashServletRequest(FlashServletContext ctx,
java.lang.String name)
Constructs a new servlet request object.
|
Modifier and Type | Class and Description |
---|---|
protected class |
AdmAccountSelect.Context
Inner class used to store servlet context information.
|
protected class |
AdmBackendControlEdit.Context
Inner class used to store servlet context information.
|
protected class |
AdmCategoryAddEdit.Context
Inner class used to store servlet context information.
|
protected class |
AdmCategoryProductAdd.Context
Inner class used to store servlet context information.
|
protected class |
AdmCategoryProductList.Context
Inner class used to store servlet context information.
|
protected class |
AdmCategorySelect.Context
Inner class used to store servlet context information.
|
protected class |
AdmCategorySubcatAdd.Context
Inner class used to store servlet context information.
|
protected class |
AdmCategorySubcatList.Context
Inner class used to store servlet context information.
|
protected class |
AdmCategorySubcatSeq.Context
Inner class used to store servlet context information.
|
protected class |
AdmCountryAddEdit.Context
Inner class used to store servlet context information.
|
protected class |
AdmCountrySelect.Context
Inner class used to store servlet context information.
|
protected class |
AdmHome.Context
Inner class used to store servlet context information.
|
protected class |
AdmImportData.Context
Inner class used to store servlet context information.
|
protected class |
AdmLeadtimeAddEdit.Context
Inner class used to store servlet context information.
|
protected class |
AdmLeadtimeSelect.Context
Inner class used to store servlet context information.
|
protected class |
AdmManufacturerAddEdit.Context
Inner class used to store servlet context information.
|
protected class |
AdmManufacturerSelect.Context
Inner class used to store servlet context information.
|
protected class |
AdmPasswordEdit.Context
Inner class used to store servlet context information.
|
protected class |
AdmPendingProductBatchSelect.Context
Inner class used to store servlet context information.
|
protected class |
AdmPendingProductEditBasic.Context
Inner class used to store servlet context information.
|
protected class |
AdmPendingProductEditDescriptions.Context
Inner class used to store servlet context information.
|
protected class |
AdmPendingProductEditImages.Context
Inner class used to store servlet context information.
|
protected class |
AdmPendingProductEditSelected.Context
Inner class used to store servlet context information.
|
protected class |
AdmPendingProductFind.Context
Inner class used to store servlet context information.
|
protected class |
AdmPendingProductList.Context
Inner class used to store servlet context information.
|
protected class |
AdmPendingProductProfile.Context
Inner class used to store servlet context information.
|
protected class |
AdmProductAttributeAddEdit.Context
Inner class used to store servlet context information.
|
protected class |
AdmProductAttributeDescrAddEdit.Context
Inner class used to store servlet context information.
|
protected class |
AdmProductAttributeDescrSelect.Context
Inner class used to store servlet context information.
|
protected class |
AdmProductAttributeList.Context
Inner class used to store servlet context information.
|
protected class |
AdmProductCategoryAdd.Context
Inner class used to store servlet context information.
|
protected class |
AdmProductCategoryList.Context
Inner class used to store servlet context information.
|
protected class |
AdmProductDescriptionEdit.Context
Inner class used to store servlet context information.
|
protected class |
AdmProductEdit.Context
Inner class used to store servlet context information.
|
protected class |
AdmProductImageEdit.Context
Inner class used to store servlet context information.
|
protected class |
AdmProductImportBatchAddEdit.Context
Inner class used to store servlet context information.
|
protected class |
AdmProductImportBatchInfo.Context
Inner class used to store servlet context information.
|
protected class |
AdmProductImportBatchSelect.Context
Inner class used to store servlet context information.
|
protected class |
AdmProductImportCandidateList.Context
Inner class used to store servlet context information.
|
protected class |
AdmProductProfile.Context
Inner class used to store servlet context information.
|
protected class |
AdmProductSearchIndexBuild.Context
Inner class used to store servlet context information.
|
protected class |
AdmProductSelect.Context
Inner class used to store servlet context information.
|
protected class |
AdmProductServlet.Context
Inner class used to store servlet context information.
|
protected class |
AdmPropertiesEdit.Context
Inner class used to store servlet context information.
|
protected class |
AdmPurge.Context
Inner class used to store servlet context information.
|
protected class |
AdmPurgeAccounts.Context
Inner class used to store servlet context information.
|
protected class |
AdmPurgeCarts.Context
Inner class used to store servlet context information.
|
protected class |
AdmPurgeCategories.Context
Inner class used to store servlet context information.
|
protected class |
AdmPurgeCreditCards.Context
Inner class used to store servlet context information.
|
protected class |
AdmPurgeFavorites.Context
Inner class used to store servlet context information.
|
protected class |
AdmPurgeOrderAudits.Context
Inner class used to store servlet context information.
|
protected class |
AdmPurgeRestockNotifications.Context
Inner class used to store servlet context information.
|
protected class |
AdmPurgeSearchLogs.Context
Inner class used to store servlet context information.
|
protected class |
AdmPurgeSiteActivities.Context
Inner class used to store servlet context information.
|
protected class |
AdmQueryDatabase.Context
Inner class used to store servlet context information.
|
protected class |
AdmSalesRepAddEdit.Context
Inner class used to store servlet context information.
|
protected class |
AdmSalesRepCustomerAdd.Context
Inner class used to store servlet context information.
|
protected class |
AdmSalesRepCustomerList.Context
Inner class used to store servlet context information.
|
protected class |
AdmSalesRepSelect.Context
Inner class used to store servlet context information.
|
protected class |
AdmSalesRepUserAddEdit.Context
Inner class used to store servlet context information.
|
protected class |
AdmSalesRepUserSelect.Context
Inner class used to store servlet context information.
|
protected class |
AdmSecurityProfileAddEdit.Context
Inner class used to store servlet context information.
|
protected class |
AdmSecurityProfileSelect.Context
Inner class used to store servlet context information.
|
protected class |
AdmSendMassEmail.Context
Inner class used to store servlet context information.
|
protected class |
AdmShipperAddEdit.Context
Inner class used to store servlet context information.
|
protected class |
AdmShipperSelect.Context
Inner class used to store servlet context information.
|
protected class |
AdmSpecialAddEdit.Context
Inner class used to store servlet context information.
|
protected class |
AdmSpecialProductAdd.Context
Inner class used to store servlet context information.
|
protected class |
AdmSpecialProductList.Context
Inner class used to store servlet context information.
|
protected class |
AdmSpecialSelect.Context
Inner class used to store servlet context information.
|
protected class |
AdmStateAddEdit.Context
Inner class used to store servlet context information.
|
protected class |
AdmStateSelect.Context
Inner class used to store servlet context information.
|
protected class |
AdmStoreTypeEdit.Context
Inner class used to store servlet context information.
|
protected class |
AdmSynchronizeData.Context
Inner class used to store servlet context information.
|
protected class |
AdmTestSiteEmails.Context
Inner class used to store servlet context information.
|
protected class |
AdmUnitMeasureAddEdit.Context
Inner class used to store servlet context information.
|
protected class |
AdmUnitMeasureSelect.Context
Inner class used to store servlet context information.
|
protected class |
AdmUserCatalogExport.Context
Inner class used to store servlet context information.
|
protected class |
AdmUserFavoritesCopy.Context
Inner class used to store servlet context information.
|
protected class |
AdmVerifyEmailAddresses.Context
Inner class used to store servlet context information.
|
protected class |
AdmVerifyProductFiles.Context
Inner class used to store servlet context information.
|
protected class |
AdmVerifySiteImages.Context
Inner class used to store servlet context information.
|
protected class |
AdmViewDatabaseInfo.Context
Inner class used to store servlet context information.
|
protected class |
AdmViewFileSystemInfo.Context
Inner class used to store servlet context information.
|
protected class |
AdmViewPoolStatus.Context
Inner class used to store servlet context information.
|
protected class |
AdmViewScheduledTasks.Context
Inner class used to store servlet context information.
|
protected class |
AdmViewServerInfo.Context
Inner class used to store servlet context information.
|
protected class |
AdmWordFixAddEdit.Context
Inner class used to store servlet context information.
|
protected class |
AdmWordFixSelect.Context
Inner class used to store servlet context information.
|
Modifier and Type | Class and Description |
---|---|
protected class |
DemoIndustryEdit.Context
Inner class used to store servlet context information.
|
Modifier and Type | Class and Description |
---|---|
protected class |
SatAccess.Context
Inner class used to store servlet context information.
|
protected class |
SatActivity.Context
Inner class used to store servlet context information.
|
protected class |
SatLocations.Context
Inner class used to store servlet context information.
|
protected class |
SatTrends.Context
Inner class used to store servlet context information.
|
Modifier and Type | Class and Description |
---|---|
protected class |
SfiAccountSelect.Context
Inner class used to store servlet context information.
|
protected class |
SfiShippingSelect.Context
Inner class used to store servlet context information.
|
protected class |
SfiUserSelect.Context
Inner class used to store servlet context information.
|
Modifier and Type | Class and Description |
---|---|
class |
ProductLookup.Context
Inner class used to store servlet context information.
|
Modifier and Type | Class and Description |
---|---|
class |
ThreadServletContext
A servlet context for background processing threads.
|
Modifier and Type | Method and Description |
---|---|
static org.apache.velocity.VelocityContext |
FlashMailMessage.initTemplateData(FlashServletContext ctx)
Creates, initializes and returns a Velocity Context object that can then
be used as the template data for an email message.
|
Constructor and Description |
---|
ThreadServletContext(FlashServletContext ctx)
Constructs a new
ThreadServletContext with no JDBC connection. |
ThreadServletContext(FlashServletContext ctx,
boolean dbaccess)
Constructs a new
ThreadServletContext and optionally obtains
a JDBC connection. |