Package | Description |
---|---|
org.itracker.model |
All entity classes are POJO beans.
|
org.itracker.persistence.dao |
This package contains all Data Access Object (XxxDAO) interfaces
along with their Hibernate implementations (XxxDAOImpl).
|
org.itracker.services |
Service Interfaces
|
org.itracker.services.implementations |
This package contains XXXService interface implementations,
named XXXServiceImpl by convention.
|
org.itracker.web.forms |
This package contains Struts forms used when receiving data from the Struts servlets
|
org.itracker.web.ptos |
This package holds PTO's (Presentatin Transfer Objects) that are used in case normal entities from the model are not good enough.
|
Modifier and Type | Method | Description |
---|---|---|
List<ProjectScript> |
Project.getScripts() |
Modifier and Type | Method | Description |
---|---|---|
int |
ProjectScript.FieldPriorityComparator.compare(ProjectScript a,
ProjectScript b) |
|
int |
ProjectScript.ScriptPriorityComparator.compare(ProjectScript a,
ProjectScript b) |
Modifier and Type | Method | Description |
---|---|---|
void |
Project.setScripts(List<ProjectScript> getScripts) |
Modifier and Type | Method | Description |
---|---|---|
ProjectScript |
ProjectScriptDAO.findByPrimaryKey(Integer scriptId) |
Find a
ProjectScript by its primary key |
ProjectScript |
ProjectScriptDAOImpl.findByPrimaryKey(Integer scriptId) |
Modifier and Type | Method | Description |
---|---|---|
List<ProjectScript> |
ProjectScriptDAO.findAll() |
Finds all
ProjectScript s |
List<ProjectScript> |
ProjectScriptDAOImpl.findAll() |
|
List<ProjectScript> |
ProjectScriptDAO.findByProject(Integer projectId) |
Finds all scripts applied to fields on a particular project.
|
List<ProjectScript> |
ProjectScriptDAOImpl.findByProject(Integer projectId) |
|
List<ProjectScript> |
ProjectScriptDAO.findByProjectField(Integer projectId,
Integer fieldId) |
Finds all scripts applied to fields on a particular project.
|
List<ProjectScript> |
ProjectScriptDAOImpl.findByProjectField(Integer projectId,
Integer fieldId) |
Modifier and Type | Method | Description |
---|---|---|
ProjectScript |
ProjectService.addProjectScript(Integer projectId,
ProjectScript projectScript) |
|
ProjectScript |
ConfigurationService.createProjectScript(ProjectScript projectScript) |
This method will create a new project script for persistance in the database.
|
ProjectScript |
ConfigurationService.getProjectScript(Integer id) |
This method will return the requested project script.
|
ProjectScript |
ProjectService.getProjectScript(Integer scriptId) |
|
ProjectScript |
ConfigurationService.updateProjectScript(ProjectScript projectScript) |
This method updates a project script in the database.
|
ProjectScript |
ProjectService.updateProjectScript(ProjectScript projectScript) |
Modifier and Type | Method | Description |
---|---|---|
List<ProjectScript> |
ConfigurationService.getProjectScripts() |
This method will return all defined project scripts.
|
List<ProjectScript> |
ProjectService.getProjectScripts() |
Modifier and Type | Method | Description |
---|---|---|
ProjectScript |
ProjectService.addProjectScript(Integer projectId,
ProjectScript projectScript) |
|
ProjectScript |
ConfigurationService.createProjectScript(ProjectScript projectScript) |
This method will create a new project script for persistance in the database.
|
ProjectScript |
ConfigurationService.updateProjectScript(ProjectScript projectScript) |
This method updates a project script in the database.
|
ProjectScript |
ProjectService.updateProjectScript(ProjectScript projectScript) |
Modifier and Type | Method | Description |
---|---|---|
ProjectScript |
ProjectServiceImpl.addProjectScript(Integer projectId,
ProjectScript projectScript) |
|
ProjectScript |
ConfigurationServiceImpl.createProjectScript(ProjectScript projectScript) |
|
ProjectScript |
ConfigurationServiceImpl.getProjectScript(Integer scriptId) |
|
ProjectScript |
ProjectServiceImpl.getProjectScript(Integer scriptId) |
|
ProjectScript |
ConfigurationServiceImpl.updateProjectScript(ProjectScript projectScript) |
|
ProjectScript |
ProjectServiceImpl.updateProjectScript(ProjectScript projectScript) |
Modifier and Type | Method | Description |
---|---|---|
List<ProjectScript> |
ConfigurationServiceImpl.getProjectScripts() |
|
List<ProjectScript> |
ProjectServiceImpl.getProjectScripts() |
Modifier and Type | Method | Description |
---|---|---|
ProjectScript |
ProjectServiceImpl.addProjectScript(Integer projectId,
ProjectScript projectScript) |
|
ProjectScript |
ConfigurationServiceImpl.createProjectScript(ProjectScript projectScript) |
|
ProjectScript |
ConfigurationServiceImpl.updateProjectScript(ProjectScript projectScript) |
|
ProjectScript |
ProjectServiceImpl.updateProjectScript(ProjectScript projectScript) |
Modifier and Type | Method | Description |
---|---|---|
String |
IssueForm.processFieldScript(ProjectScript projectScript,
int event,
String currentValue,
List<NameValuePair> optionValues,
org.apache.struts.action.ActionMessages currentErrors) |
Run provided BEANSHELL script against form instance, taking into account
incoming event type, field raised an event and current values.
|
Modifier and Type | Method | Description |
---|---|---|
void |
IssueForm.processFieldScripts(List<ProjectScript> projectScriptModels,
int event,
Map<Integer,String> currentValues,
Map<Integer,List<NameValuePair>> optionValues,
org.apache.struts.action.ActionMessages currentErrors) |
The most general way to run scripts.
|
Modifier and Type | Method | Description |
---|---|---|
ProjectScript |
ProjectScriptPTO.getScript() |
|
ProjectScript |
ProjectScriptPTO.getVO() |
Deprecated.
|
Constructor | Description |
---|---|
ProjectScriptPTO(ProjectScript script,
Locale locale) |
Copyright © 2002–2019 itracker. All rights reserved.