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.imports |
DPS Flash specific parsers and processors for importing data from delimited text files or from Excel spreadsheet files.
|
com.dpslink.flash.servlet.admin |
DPS Flash specific servlets for handling administration functions.
|
Modifier and Type | Field and Description |
---|---|
static java.lang.Class<SalesRep> |
DBO.SALESREP
The sales rep object class.
|
Modifier and Type | Method and Description |
---|---|
SalesRep |
SalesRepController.get(java.lang.String code)
Returns the sales rep record for the given sales rep code.
|
SalesRep |
SalesRepUser.getSalesRep()
Returns the sales rep object.
|
SalesRep |
SalesRepCustomer.getSalesRep()
Returns the sales rep object.
|
Modifier and Type | Method and Description |
---|---|
java.util.ArrayList<SalesRep> |
SalesRepController.getAll()
Returns a collection of all records in the table associated with the
controller.
|
Modifier and Type | Method and Description |
---|---|
boolean |
SalesRepController.delete(SalesRep obj)
Deletes an existing record from the table associated with the controller.
|
boolean |
SalesRepUserController.deleteSalesRep(SalesRep rep)
Deletes all sales rep user records for a sales rep.
|
boolean |
SalesRepCustomerController.deleteSalesRep(SalesRep salesrep)
Deletes all sales rep customers from the database for a given sales rep.
|
java.util.ArrayList<SalesRepCustomer> |
SalesRepCustomerController.getMatching(SalesRep rep,
java.lang.String field,
java.lang.String operand,
java.lang.String argument)
Returns a collection of sales rep customer records that have a field that
contains characters matching the given criteria.
|
java.util.ArrayList<SalesRepUser> |
SalesRepUserController.getSalesRep(SalesRep rep)
Returns a collection of sales rep user records for the given sales rep.
|
java.util.ArrayList<SalesRepCustomer> |
SalesRepCustomerController.getSalesRep(SalesRep rep,
boolean hasUser)
Returns a collection of sales rep customer records for the given sales rep.
|
void |
SalesRepUser.setSalesRep(SalesRep value)
Sets the sales rep object.
|
void |
SalesRepCustomer.setSalesRep(SalesRep value)
Sets the sales rep object.
|
Modifier and Type | Field and Description |
---|---|
private SalesRep |
SalesRepUserImport.ivSalesRep
A sales rep object.
|
private SalesRep |
SalesRepCustomerImport.ivSalesRep
A sales rep object.
|
Modifier and Type | Field and Description |
---|---|
private java.util.ArrayList<SalesRep> |
SalesRepUserImport.ivSalesReps
A cache of all sales reps.
|
private java.util.ArrayList<SalesRep> |
SalesRepCustomerImport.ivSalesReps
A cache of all sales reps.
|
Modifier and Type | Field and Description |
---|---|
protected SalesRep |
AdmSalesRepAddEdit.Context.dbObject
The current object being added or edited.
|
protected SalesRep |
AdmSalesRepSelect.Context.selectObj
The current selected object.
|
Modifier and Type | Field and Description |
---|---|
protected java.util.ArrayList<SalesRep> |
AdmSalesRepSelect.Context.selectList
The current list of selection objects.
|
protected java.util.ArrayList<SalesRep> |
AdmSalesRepAddEdit.Context.selectList
The select servlet's current list of selection objects.
|