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.servlet |
DPS Flash specific servlets for handling shopping functions.
|
com.dpslink.flash.servlet.admin |
DPS Flash specific servlets for handling administration functions.
|
Modifier and Type | Field and Description |
---|---|
static java.lang.Class<ProductAttribute> |
DBO.PRODATR
The product attribute object class.
|
Modifier and Type | Method and Description |
---|---|
ProductAttribute |
ProductAttributeController.get(java.lang.String prodcode,
java.lang.String uomcode,
java.lang.String desccode)
Returns the attribute record for a product code, unit of measure code
and descriptor code.
|
Modifier and Type | Method and Description |
---|---|
java.util.ArrayList<ProductAttribute> |
ProductAttributeController.getDisplayable(Product product)
Returns a collection of the displayable attribute records for a product.
|
java.util.ArrayList<ProductAttribute> |
ProductAttributeController.getFiltersForCategory(Category category)
Returns a collection of summarized product attribute records for the
given category.
|
java.util.ArrayList<ProductAttribute> |
ProductAttributeController.getFiltersForCategory(java.lang.String category)
Returns a collection of summarized product attribute records for the
given category code.
|
java.util.ArrayList<ProductAttribute> |
ProductAttributeController.getFiltersForSearch(java.util.ArrayList<Product> products)
Returns a collection of summarized product attribute records for the
given set of products.
|
java.util.ArrayList<ProductAttribute> |
ProductAttributeController.getProduct(Product product)
Returns a collection of attribute records for a product.
|
java.util.ArrayList<ProductAttribute> |
ProductAttributeController.getProduct(java.lang.String prodcode,
java.lang.String uomcode)
Returns a collection of attribute records for a product code and unit of
measure code.
|
Modifier and Type | Method and Description |
---|---|
int |
ProductAttributeController.add(ProductAttribute obj,
boolean logdup)
Adds a new record to the table associated with the controller.
|
boolean |
ProductAttributeController.delete(ProductAttribute obj)
Deletes an existing record from the table associated with the controller.
|
boolean |
ProductAttributeController.update(ProductAttribute obj)
Updates an existing record in the table associated with the controller.
|
Modifier and Type | Method and Description |
---|---|
protected void |
LuceneIndexer.addToSiteAttrs(ProductAttributeDescriptor pad,
ProductAttribute pa)
Adds the given product attribute descriptor and product attribute to the
sorted collection of searchable attributes.
|
Modifier and Type | Field and Description |
---|---|
protected java.util.ArrayList<ProductAttribute> |
Products.Context.prodAttrFilters
The current list of product attribute filters.
|
protected java.util.ArrayList<ProductAttribute> |
ProductSearch.Context.prodAttrFilters
The current list of product attribute filters.
|
Constructor and Description |
---|
SelectableFilter(ProductAttribute pa)
Constructs a new selectable product attribute filter.
|
Modifier and Type | Field and Description |
---|---|
protected ProductAttribute |
AdmProductAttributeAddEdit.Context.dbObject
The current object being added or edited.
|
protected ProductAttribute |
AdmProductAttributeList.Context.selectObj
The current selected object.
|
Modifier and Type | Field and Description |
---|---|
protected java.util.ArrayList<ProductAttribute> |
AdmProductAttributeAddEdit.Context.listList
The attribute list servlet's current list of selection objects.
|
protected java.util.ArrayList<ProductAttribute> |
AdmProductAttributeList.Context.selectList
The current list of selection objects.
|