BrightSide Workbench Full Report + Source Code
org.turro.contacts.path.ContactsInterceptor Class Reference
Inheritance diagram for org.turro.contacts.path.ContactsInterceptor:
Collaboration diagram for org.turro.contacts.path.ContactsInterceptor:

Protected Member Functions

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

Additional Inherited Members

- Public Member Functions inherited from org.turro.action.AbstractInterceptor
boolean executeWeb (IConstructor constructor, String goTo, KeyValueMap kvm)
 
boolean executeApp (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 32 of file ContactsInterceptor.java.

Member Function Documentation

◆ doExecuteApp()

boolean org.turro.contacts.path.ContactsInterceptor.doExecuteApp ( Application  application,
String  goTo,
KeyValueMap  kvm 
)
protected

Reimplemented from org.turro.action.AbstractInterceptor.

Definition at line 40 of file ContactsInterceptor.java.

40  {
41  if("acceptance".equals(goTo)) {
42  ContactMenu.showAcceptances();
43  return true;
44  } else if("contact".equals(goTo)) {
45  if(Application.getApplication().isInRole("contact:edit")) {
46  ContactMenu.showContact(kvm.get("contactId"));
47  }
48  return true;
49  } else if("convocation".equals(goTo)) {
50  if(Application.getApplication().isInRole("convocation:edit")) {
51  ContactMenu.showConvocation(kvm.get("convocationId"));
52  }
53  return true;
54  }
55  return false;
56  }
Here is the call graph for this function:

◆ doExecuteWeb()

boolean org.turro.contacts.path.ContactsInterceptor.doExecuteWeb ( IConstructor  constructor,
String  goTo,
KeyValueMap  kvm 
)
protected

Reimplemented from org.turro.action.AbstractInterceptor.

Definition at line 35 of file ContactsInterceptor.java.

35  {
36  return false;
37  }

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