|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use JobModel | |
com.instantbank.component.job.ejb | This is the entity EJB which represents a letters Job. |
com.instantbank.component.job.model | This is the model (state) of the Job EJB. |
com.instantbank.lettertemplate.control.event | These are the event classes that represent user requests over the Letters Model. |
com.instantbank.lettertemplate.control.web.handlers | These are handler classes for the MVC Controller SERVLET of Letters subsystem (one by use case). |
Uses of JobModel in com.instantbank.component.job.ejb |
Fields in com.instantbank.component.job.ejb declared as JobModel | |
private JobModel |
JobEJB.jobModel
|
private JobModel |
JobDAO.jobModel
model of Job |
Methods in com.instantbank.component.job.ejb that return JobModel | |
JobModel |
Job.getState()
Gets state value of ejb instance |
JobModel |
JobEJB.getState()
Gets state value of ejb instance |
JobModel |
JobDAO.getModel()
Getter method for jobModel attribute |
Methods in com.instantbank.component.job.ejb with parameters of type JobModel | |
void |
Job.setState(JobModel jobModel)
Sets value to the state of ejb instance |
void |
JobEJB.setState(JobModel jobModel)
Sets value to the state of ejb instance |
void |
JobDAO.ejbCreate(JobModel jobModel)
Supports ejbCreate() method of Job EJB: stores state of new ejb instance in the database (inserting master and details of jobModel attribute); updates jobId, with value assigned by DB; updates jobModel with state master value of the database. |
void |
JobDAO.ejbStore(JobModel jobModel)
Supports ejbStore() method of Job EJB: updates in database master and details of instance |
Uses of JobModel in com.instantbank.component.job.model |
Methods in com.instantbank.component.job.model with parameters of type JobModel | |
void |
JobModel.copy(JobModel other)
Copies a JobModel value to attributes of this instance |
Uses of JobModel in com.instantbank.lettertemplate.control.event |
Fields in com.instantbank.lettertemplate.control.event declared as JobModel | |
private JobModel |
SetLetterJobEvent.jobModel
job Model corresponding to the job to save |
Methods in com.instantbank.lettertemplate.control.event that return JobModel | |
JobModel |
SetLetterJobEvent.getJobModel()
get method for jobModel |
Constructors in com.instantbank.lettertemplate.control.event with parameters of type JobModel | |
SetLetterJobEvent(int actionType,
java.lang.String companyId,
java.lang.Long userId,
java.lang.Long templateId,
java.lang.Long jobId,
JobModel jobModel)
constructor: initializes attributes |
Uses of JobModel in com.instantbank.lettertemplate.control.web.handlers |
Subclasses of JobModel in com.instantbank.lettertemplate.control.web.handlers | |
class |
JobWebImpl
This class is the web-tier representation of the Job EJB. |
Methods in com.instantbank.lettertemplate.control.web.handlers that return JobModel | |
private JobModel |
SetLetterJobHandler.parseXMLJob(java.lang.String xmlJob,
JobWebImpl jobView)
auxiliary method for parsing a XML string containing data of a job to save |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |