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 |
DPS Flash specific servlets for handling shopping functions.
|
com.dpslink.flash.servlet.admin |
DPS Flash specific servlets for handling administration functions.
|
com.dpslink.flash.upgrade.v82 |
DPS Flash specific command line classes created in version 8.2 for populating Notification Framework data.
|
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<NotificationPref> |
DBO.NOTPREF
The notification preference object class.
|
Modifier and Type | Method and Description |
---|---|
NotificationPref |
NotificationPrefController.get(java.lang.String id,
java.lang.String type)
Returns the user notification preference for the given user id and message
type.
|
Modifier and Type | Method and Description |
---|---|
java.util.ArrayList<NotificationPref> |
User.getNotificationPrefs()
(not persisted) Returns the collection of notification preferences.
|
java.util.ArrayList<NotificationPref> |
NotificationPrefController.getUser(java.lang.String id)
Returns a collection of user notification preference records for the given
user id.
|
java.util.ArrayList<NotificationPref> |
NotificationPrefController.getUserDefaults(java.lang.String id,
java.lang.String type)
Returns the user notification preference defaults for the given user based
on the given user type (shopper, sales rep, admin, etc.).
|
java.util.ArrayList<NotificationPref> |
NotificationPrefController.getUserDefaults(User user)
Returns the user notification preference defaults for the given user based
on the user's type (shopper, sales rep, admin, etc.).
|
Modifier and Type | Method and Description |
---|---|
int |
NotificationPrefController.add(NotificationPref obj,
boolean logdup)
Adds a new record to the table associated with the controller.
|
boolean |
NotificationPrefController.delete(NotificationPref obj)
Deletes an existing record from the table associated with the controller.
|
boolean |
NotificationPrefController.update(NotificationPref obj)
Updates an existing record in the table associated with the controller.
|
Modifier and Type | Method and Description |
---|---|
boolean |
NotificationPrefController.add(java.util.ArrayList<NotificationPref> prefs)
Adds a collection of new user notification preference records to the
database table.
|
void |
User.setNotificationPrefs(java.util.ArrayList<NotificationPref> value)
(not persisted) Sets the collection of notification preferences.
|
Modifier and Type | Class and Description |
---|---|
class |
AccountContactAddEdit.EditablePreference
Inner class used to define an editable notification preference.
|
Constructor and Description |
---|
EditablePreference(NotificationPref pref,
int index)
Constructs a new editable notification preference.
|
Modifier and Type | Class and Description |
---|---|
class |
AdmSalesRepUserAddEdit.EditablePreference
Inner class used to define an editable notification preference.
|
Constructor and Description |
---|
EditablePreference(NotificationPref pref,
int index)
Constructs a new editable notification preference.
|
Modifier and Type | Method and Description |
---|---|
protected boolean |
PopulateNotificationContacts.doSalesRep(User user,
java.util.ArrayList<NotificationPref> srepprefs)
Processes a sales rep user.
|
protected boolean |
PopulateNotificationContacts.doShopper(User user,
java.util.ArrayList<NotificationPref> userprefs)
Processes a shopping user.
|
Modifier and Type | Method and Description |
---|---|
static boolean |
NotificationContact.setContactPrefs(User user,
NotificationPref nfpref)
Sets an existing contact's notification preferences in the notification
framework.
|
Modifier and Type | Method and Description |
---|---|
static boolean |
NotificationContact.setContactPrefs(User user,
java.util.ArrayList<NotificationPref> nfprefs)
Sets an existing contact's notification preferences in the notification
framework.
|