org.olat.group.ui.wizard
Class MemberListWizardController

java.lang.Object
  extended by org.olat.core.gui.control.DefaultController
      extended by org.olat.core.gui.control.controller.BasicController
          extended by org.olat.group.ui.wizard.MemberListWizardController
All Implemented Interfaces:
Controller, ControllerEventListener, Disposable

public class MemberListWizardController
extends BasicController

Description:
Wizard for choosing the format of the member list archive.

First step: choose the interest groups/areas

Second step: choose the columns for the user info (e.g. username, firstname, lastname, ...)

Third step: choose the output format type, either output all members in a single .xls file, or create a zip with a .xls file per group.

Fourth step: Download file and cleanup temp file upon dispose.

Initial Date: 30.07.2007

Author:
Lavinia Dumitrescu

Field Summary
static java.lang.String AREAS_MEMBERS
           
static java.lang.String GROUPS_MEMBERS
           
 
Constructor Summary
MemberListWizardController(UserRequest ureq, WindowControl wControl, BGContext context, java.lang.String type)
           
 
Method Summary
 void event(UserRequest ureq, Component source, Event event)
          abstract event method for subclasses.
 void event(UserRequest ureq, Controller source, Event event)
          the only method of the interface controllereventlistener.
 
Methods inherited from class org.olat.core.gui.control.DefaultController
addControllerListener, addLoggingResourceable, dispatchEvent, dispatchEvent, dispose, getControllerCount, getInitialComponent, getUserActivityLogger, getWindowControlForDebug, isDisposed, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

GROUPS_MEMBERS

public static final java.lang.String GROUPS_MEMBERS
See Also:
Constant Field Values

AREAS_MEMBERS

public static final java.lang.String AREAS_MEMBERS
See Also:
Constant Field Values
Constructor Detail

MemberListWizardController

public MemberListWizardController(UserRequest ureq,
                                  WindowControl wControl,
                                  BGContext context,
                                  java.lang.String type)
Parameters:
ureq -
wControl -
context -
type -
Method Detail

event

public void event(UserRequest ureq,
                  Component source,
                  Event event)
Description copied from class: DefaultController
abstract event method for subclasses. the event received from the component we are listening to are always rerouted to this method here, except when the component has been disposed, in which case the events are simply ignored.


event

public void event(UserRequest ureq,
                  Controller source,
                  Event event)
Description copied from class: DefaultController
the only method of the interface controllereventlistener. always gets called when a controller we 'subscribed' to fires an event. we provide a default implementation here since there are many controllers which are standalone and need no subcontrollers

See Also:
DefaultController.event(org.olat.core.gui.UserRequest, org.olat.core.gui.control.Controller, org.olat.core.gui.control.Event)