BrightSide Workbench Full Report + Source Code
org.turro.action.AbstractInterceptor Class Referenceabstract
Inheritance diagram for org.turro.action.AbstractInterceptor:
Collaboration diagram for org.turro.action.AbstractInterceptor:

Public Member Functions

boolean executeWeb (IConstructor constructor, String goTo, KeyValueMap kvm)
 
boolean executeApp (Application application, String goTo, KeyValueMap kvm)
 

Protected Member Functions

abstract boolean doExecuteWeb (IConstructor constructor, String goTo, KeyValueMap kvm) throws IOException
 
abstract boolean doExecuteApp (Application application, String goTo, KeyValueMap kvm)
 

Detailed Description

Author
Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g

Definition at line 31 of file AbstractInterceptor.java.

Member Function Documentation

◆ doExecuteApp()

abstract boolean org.turro.action.AbstractInterceptor.doExecuteApp ( Application  application,
String  goTo,
KeyValueMap  kvm 
)
abstractprotected

◆ doExecuteWeb()

abstract boolean org.turro.action.AbstractInterceptor.doExecuteWeb ( IConstructor  constructor,
String  goTo,
KeyValueMap  kvm 
) throws IOException
abstractprotected

◆ executeApp()

boolean org.turro.action.AbstractInterceptor.executeApp ( Application  application,
String  goTo,
KeyValueMap  kvm 
)

Implements org.turro.action.IInterceptor.

Definition at line 44 of file AbstractInterceptor.java.

44  {
45  return doExecuteApp(application, goTo, kvm);
46  }
abstract boolean doExecuteApp(Application application, String goTo, KeyValueMap kvm)
Here is the call graph for this function:

◆ executeWeb()

boolean org.turro.action.AbstractInterceptor.executeWeb ( IConstructor  constructor,
String  goTo,
KeyValueMap  kvm 
)

Implements org.turro.action.IInterceptor.

Definition at line 34 of file AbstractInterceptor.java.

34  {
35  try {
36  return doExecuteWeb(constructor, goTo, kvm);
37  } catch (IOException ex) {
38  WebLoggers.info(this).exception(ex).log();
39  return false;
40  }
41  }
abstract boolean doExecuteWeb(IConstructor constructor, String goTo, KeyValueMap kvm)
Here is the call graph for this function:

The documentation for this class was generated from the following file: