|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.ikasan.framework.web.controller.ModulesController
@Controller @RequestMapping(value="/modules/*.htm") public class ModulesController
Controller class for the web-console dealing with modules
| Constructor Summary | |
|---|---|
ModulesController(ModuleService moduleService)
Constructor |
|
| Method Summary | |
|---|---|
String |
deleteTrigger(String moduleName,
String flowName,
String flowElementName,
String triggerId,
org.springframework.ui.ModelMap model)
Delete a wiretap trigger |
String |
listModules(org.springframework.ui.ModelMap model)
List the modules given a model (map) |
void |
setJobAwareFlowEventListener(JobAwareFlowEventListener jobAwareFlowEventListener)
Set the job aware flow event listener |
String |
viewFlow(String moduleName,
String flowName,
org.springframework.ui.ModelMap model)
View the flow |
String |
viewFlowElement(String moduleName,
String flowName,
String flowElementName,
org.springframework.ui.ModelMap model)
View the flow element |
String |
viewModule(String moduleName,
org.springframework.ui.ModelMap model)
View the module |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public ModulesController(ModuleService moduleService)
moduleService - - The module service| Method Detail |
|---|
@RequestMapping(value="list.htm") public String listModules(org.springframework.ui.ModelMap model)
model - - The model (map)
@RequestMapping(value="view.htm")
public String viewModule(@RequestParam(value="moduleName")
String moduleName,
org.springframework.ui.ModelMap model)
moduleName - - The name of the module to viewmodel - - The model
@RequestMapping(value="viewFlow.htm")
public String viewFlow(@RequestParam(value="moduleName")
String moduleName,
@RequestParam(value="flowName")
String flowName,
org.springframework.ui.ModelMap model)
moduleName - - The name of the moduleflowName - - The name of the flowmodel - - The model
@RequestMapping(value="viewFlowElement.htm")
public String viewFlowElement(@RequestParam(value="moduleName")
String moduleName,
@RequestParam(value="flowName")
String flowName,
@RequestParam(value="flowElementName")
String flowElementName,
org.springframework.ui.ModelMap model)
moduleName - - The name of the moduleflowName - - The name of the flowflowElementName - - The name of the flow elementmodel - - The model
@RequestMapping(value="deleteTrigger.htm")
public String deleteTrigger(@RequestParam(value="moduleName")
String moduleName,
@RequestParam(value="flowName")
String flowName,
@RequestParam(value="flowElementName")
String flowElementName,
@RequestParam(value="triggerId")
String triggerId,
org.springframework.ui.ModelMap model)
throws Exception
moduleName - - The name of the moduleflowName - - The name of the flowflowElementName - - The name of the flow elementtriggerId - - The id of the trigger to deletemodel - - The model
Exception - - Exception if we fail to delete the triggerpublic void setJobAwareFlowEventListener(JobAwareFlowEventListener jobAwareFlowEventListener)
jobAwareFlowEventListener - - The job aware flow event listener to set
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||