BrightSide Workbench Full Report + Source Code
org.turro.contacts.zul.register.SignUpCtrl Class Reference
Inheritance diagram for org.turro.contacts.zul.register.SignUpCtrl:
Collaboration diagram for org.turro.contacts.zul.register.SignUpCtrl:

Public Member Functions

 SignUpCtrl ()
 
- Public Member Functions inherited from org.turro.elephant.direct.AbstractDirectEntityCtrl
 AbstractDirectEntityCtrl (String tmplRoot, String entityAttribute)
 
void setConstructor (IConstructor constructor)
 
void setEntityPath (String entityPath)
 
boolean hasContent ()
 
- Public Member Functions inherited from org.turro.elephant.direct.AbstractDirectContentCtrl
 AbstractDirectContentCtrl (String tmplRoot)
 
String createFormAction ()
 
String createPOST (String values)
 
String getAjaxSubmitUrl (String containerId)
 
String getAjaxUrl (String containerId, String values)
 
String getAjaxUrl (String containerId, KeyValueMap values)
 
String getAjaxEvalUrl (KeyValueMap values)
 
String createRightNowURL (String values)
 
String createRightNowURL (KeyValueMap values)
 
String createLinkTo (String link, KeyValueMap values)
 
String createURL ()
 
String createURL (IConstructor constructor, String values)
 
String createURL (IConstructor constructor, String values, int daysValid)
 
String createURL (IConstructor constructor, String values, int daysValid, boolean withDomain)
 
String createURL (IConstructor constructor, IContact recipe, String values, int daysValid, boolean withDomain)
 
String createURL (IConstructor constructor, IContact recipe, KeyValueMap values, int daysValid, boolean withDomain)
 
void setTemplate (String template)
 
void render (IConstructor constructor)
 
String parse (IConstructor constructor)
 
boolean itsMe (String id)
 
boolean myTurn (HttpServletRequest request)
 
void execute (ServletContext context, HttpServletRequest request, HttpServletResponse response)
 
void execute (IConstructor constructor)
 
- Public Member Functions inherited from org.turro.action.IEntityCtrl
void setTemplate (String template)
 
void render (IConstructor constructor)
 
String parse (IConstructor constructor)
 

Protected Member Functions

void prepareMarker (ElephantMarker marker)
 
String getIdentifier ()
 
void doExecute (IConstructor constructor, KeyValueMap map)
 
void prepareCleanMarker (ElephantMarker marker, KeyValueMap map)
 
- Protected Member Functions inherited from org.turro.elephant.direct.AbstractDirectEntityCtrl
ElephantMarker getMarker (IConstructor constructor)
 
- Protected Member Functions inherited from org.turro.elephant.direct.AbstractDirectContentCtrl
String getRedirContext (IConstructor constructor, boolean withDomain)
 
ElephantMarker getCleanMarkerFrom (IConstructor constructor)
 
void addContainerId (ElephantMarker marker, boolean container)
 
String getTmplRoot ()
 
String getTemplate ()
 
void writeMarkerToResponse (IConstructor constructor, KeyValueMap map)
 
void writeMarkerToResponse (IConstructor constructor, KeyValueMap map, Map extra)
 
void setNeedsUser (boolean needsUser)
 

Additional Inherited Members

- Protected Attributes inherited from org.turro.elephant.direct.AbstractDirectEntityCtrl
String entityPath
 
IElephantEntity iee
 
IConstructor norReentrantConstructor
 
- Protected Attributes inherited from org.turro.elephant.direct.AbstractDirectContentCtrl
String template = "full"
 

Detailed Description

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

Definition at line 49 of file SignUpCtrl.java.

Constructor & Destructor Documentation

◆ SignUpCtrl()

org.turro.contacts.zul.register.SignUpCtrl.SignUpCtrl ( )

Definition at line 51 of file SignUpCtrl.java.

51  {
52  super("widgets/auth", "user");
53  }

Member Function Documentation

◆ doExecute()

void org.turro.contacts.zul.register.SignUpCtrl.doExecute ( IConstructor  constructor,
KeyValueMap  map 
)
protected

Reimplemented from org.turro.elephant.direct.AbstractDirectContentCtrl.

Definition at line 71 of file SignUpCtrl.java.

71  {
72  String type = map.get("type");
73  if("sign-up".equals(type)) {
74  processSignUp(constructor, map);
75  }
76  }

◆ getIdentifier()

String org.turro.contacts.zul.register.SignUpCtrl.getIdentifier ( )
protected

Reimplemented from org.turro.elephant.direct.AbstractDirectContentCtrl.

Definition at line 66 of file SignUpCtrl.java.

66  {
67  return SignUpCtrl.class.getAnnotation(DirectContent.class).identifier();
68  }

◆ prepareCleanMarker()

void org.turro.contacts.zul.register.SignUpCtrl.prepareCleanMarker ( ElephantMarker  marker,
KeyValueMap  map 
)
protected

Reimplemented from org.turro.elephant.direct.AbstractDirectContentCtrl.

Definition at line 79 of file SignUpCtrl.java.

79  {
80  throw new UnsupportedOperationException("Not supported yet.");
81  }

◆ prepareMarker()

void org.turro.contacts.zul.register.SignUpCtrl.prepareMarker ( ElephantMarker  marker)
protected

Reimplemented from org.turro.elephant.direct.AbstractDirectContentCtrl.

Definition at line 58 of file SignUpCtrl.java.

58  {
59  marker.put("type", "sign-up");
60  marker.put("actionLink", createFormAction());
61  }
Here is the call graph for this function:

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