com.nabhinc.portlet.mvcportlet.actionprocessor |
MVCPortlet Action Processor implementation classes.
|
Java Source File Name | Type | Comment |
AttributeSetter.java | Class | Sets attribute values from request parameters or preferences. |
BeanPopulator.java | Class | Creates a Java bean if not already created, populates it based on the
request parameters, and sets it as an attribute value under specified scope.
author: Padmanabh Dabke author: (c) 2005 Nabh Information Systems, Inc. |
CheckParameter.java | Class | Verify if required "param" parameter is specified.
author: Padmanabh Dabke author: (c) 2004 Nabh Information Systems, Inc. |
DeleteRecord.java | Class | Deletes a database record if an optional
SQL condition is satisfied.
Required configuration parameters
- sql - SQL used to delete desired record.
Optional configuration parameters
- check-sql - If this sql returns a record then the delete
sql will not be executed.
- params - Comma separated list of names of SQL parameters to be
inserted.
|
DeleteRecords.java | Class | Deletes multiple database records corresponding to the checked
items for deletion.
author: Padmanabh Dabke author: (c) 2004 Nabh Information Systems, Inc. |
FileUploadProcessor.java | Class | Upload file to the specified upload folder in upload-directory
global-param. |
InsertUpdateOneToManyRelation.java | Class | Inserts or updates a one to many mapping records.
- sql - SQL used to update or insert a record.
Optional configuration parameters
- params - Comma separated list of names of SQL parameters to be
inserted.
|
InsertUpdateRecord.java | Class | Inserts or updates one or more database records
Required configuration parameters
- sql - SQL used to update or insert a record.
Optional configuration parameters
- params - Comma separated list of names of SQL parameters to be
inserted.
|
ParameterSetter.java | Class | Sets render parameters derived from bean properties.
author: Padmanabh Dabke author: (c) 2006 Nabh Information Systems, Inc. |
PreferenceSetter.java | Class | Sets portlet preference values from request parameters/session attributes. |
ResetValues.java | Class | Resets attribute values
author: Padmanabh Dabke author: (c) 2005 Nabh Information Systems, Inc. |
SelectRecord.java | Class | Retrieves a database record and sets request attribute
"mvcportlet.record" to an array of objects corresponding to
the record fields. |
SetDefaultValues.java | Class | Sets render parameter values from the default values of fields in
the form associated with this action.
author: Padmanabh Dabke author: (c) 2004 Nabh Information Systems, Inc. |
Switch.java | Class | To be used as a switch. |