Uses of Class
com.arsdigita.bebop.FormProcessException

Packages that use FormProcessException
com.arsdigita.bebop A set of server-side user interface components for web applications. 
com.arsdigita.bebop.demo.workflow Example A set of classes to demonstrate how to use Bebop components in a control flow i.e., how Bebop components hand off control to one another. 
com.arsdigita.bebop.event Listeners that allow a programmer to execute custom code at various points in the request. 
com.arsdigita.bebop.form Provides a set of server-side user interface components for obtaining user input. 
com.arsdigita.bebop.parameters These classes represent all the ParameterModels and ValidationListeners i.e., all classes that handle obtaining and validating the state from the HTTP request and transforming them into Java objects. 
com.arsdigita.bebop.portal User interface classes for displaying portals. 
com.arsdigita.formbuilder.ui The Form Builder UI provides a number of embeddable bebop components to facilitate integration of the form builder service with applications. 
com.arsdigita.formbuilder.ui.editors Embeddable formbuilder editor widgets. 
com.arsdigita.toolbox.ui Miscellaneous collection of useful Bebop components. 
com.arsdigita.ui.login Internationalized UI classes for user login and registration. 
com.arsdigita.ui.permissions Default implementation of the CCM permissions UI. 
com.arsdigita.web.ui   
 

Uses of FormProcessException in com.arsdigita.bebop
 

Subclasses of FormProcessException in com.arsdigita.bebop
 class FormValidationException
          FormValidationException
 

Methods in com.arsdigita.bebop that throw FormProcessException
protected  void Wizard.fireSubmitted(FormSectionEvent evt)
           
protected  void Wizard.fireProcess(FormSectionEvent evt)
           
protected  void FormStep.fireSubmitted(FormSectionEvent evt)
           
protected  void FormStep.fireProcess(FormSectionEvent evt)
           
 FormData MetaForm.process(PageState state)
          Processes the request-specific form for the request represented by state.
 FormData FormModel.process(PageState state)
          Creates a new FormData object that is populated with default values (for an initial request) or values from the request (for a submission).
 FormData FormModel.process(PageState state, boolean isSubmission)
          Creates a new FormData object that is populated with default values (for an initial request) or values from the request (for a submission).
protected  void FormModel.fireSubmitted(FormSectionEvent e)
           
protected  void FormModel.fireFormInit(FormSectionEvent e)
          Calls a form initialization listener.
protected  void FormSection.fireSubmitted(FormSectionEvent e)
          Calls the submitted method on all registered submission listeners.
protected  void FormSection.fireInit(FormSectionEvent e)
          Calls the init method on all registered init listeners.
protected  void FormSection.fireProcess(FormSectionEvent e)
          Calls the process method on all registered process listeners.
protected  void FormSection.fireCancel(FormSectionEvent e)
          Calls the cancel method on all registered cancellation listeners.
 FormData Form.process(PageState state)
          Processes this form, creating a FormData object.
 

Constructors in com.arsdigita.bebop that throw FormProcessException
FormData(FormModel model, javax.servlet.http.HttpServletRequest request)
          Constructs a new FormData object containing the transformed and validated query parameters from an HTTP request.
FormData(FormModel model, javax.servlet.http.HttpServletRequest request, boolean isSubmission)
          Constructs a new FormData object containing the transformed and validated query parameters from an HTTP request.
FormData(FormModel model, javax.servlet.http.HttpServletRequest request, boolean isSubmission, FormData fallback)
          Constructs a new FormData object containing the transformed and validated query parameters from an HTTP request.
FormData(FormModel model, javax.servlet.http.HttpServletRequest request, Locale locale)
          Constructs a new FormData object containing the transformed and validated query parameters from an HTTP request.
FormData(FormModel model, javax.servlet.http.HttpServletRequest request, Locale locale, boolean isSubmission)
          Constructs a new FormData object containing the transformed and validated query parameters from an HTTP request.
FormData(FormModel model, javax.servlet.http.HttpServletRequest request, Locale locale, boolean isSubmission, FormData fallback)
          Constructs a new FormData object containing the transformed and validated query parameters from an HTTP request.
 

Uses of FormProcessException in com.arsdigita.bebop.demo.workflow
 

Methods in com.arsdigita.bebop.demo.workflow that throw FormProcessException
 void DisplayTask.submitted(FormSectionEvent e)
           
 void DisplayTask.process(FormSectionEvent e)
           
 void AddTask.process(FormSectionEvent event)
           
 void AddTask.submitted(FormSectionEvent e)
           
 void AddProcess.process(FormSectionEvent e)
          The main action of the form.
 void AddProcess.submitted(FormSectionEvent e)
          Check if we want to examine the submission.
 

Uses of FormProcessException in com.arsdigita.bebop.event
 

Methods in com.arsdigita.bebop.event that throw FormProcessException
 void ParameterListener.validate(ParameterEvent e)
          Performs a validation check on the data objects associated with a specific parameter.
 void FormCancelListener.cancel(FormSectionEvent e)
          Performs any necessary cleanup after a user cancels out of a form
 void FormProcessListener.process(FormSectionEvent e)
          Performs a processing step on the data in the FormData object.
 void FormValidationListener.validate(FormSectionEvent e)
          Performs a validation check on the specified FormData object, involving any number of parameters.
 void FormInitListener.init(FormSectionEvent e)
          Initializes a FormData object already populated with values from the request.
 void FormSubmissionListener.submitted(FormSectionEvent e)
          This method gets called as soon as the FormData for a form has been filled with the request parameters.
 

Uses of FormProcessException in com.arsdigita.bebop.form
 

Methods in com.arsdigita.bebop.form that throw FormProcessException
protected  void Widget.fireValidation(ParameterEvent evt)
           
 

Uses of FormProcessException in com.arsdigita.bebop.parameters
 

Methods in com.arsdigita.bebop.parameters that throw FormProcessException
 void WordValidationListener.validate(ParameterEvent e)
           
 void URLValidationListener.validate(ParameterEvent e)
           
 void StringLengthValidationListener.validate(ParameterEvent e)
           
 void StringIsLettersOrDigitsValidationListener.validate(ParameterEvent e)
           
 void StringInRangeValidationListener.validate(ParameterEvent e)
           
 void SingleLineValidationListener.validate(ParameterEvent e)
           
 void NumberInRangeValidationListener.validate(ParameterEvent e)
           
 void IntegerValidationListener.validate(ParameterEvent e)
           
 void FloatValidationListener.validate(ParameterEvent e)
           
 void EmailValidationListener.validate(ParameterEvent e)
           
 void CancellableValidationListener.validate(ParameterEvent evt)
           
protected  void ArrayParameter.validate(ParameterData data)
          Validate the array extracted from the request by running the validation listeners of this parameter, and by running thte validation for the element parameter for each entry in the array separately.
 void ParameterData.validate()
          Revalidate this ParameterData.
protected  void ParameterModel.validate(ParameterData data)
          Call parameter validation listeners that have been added to this ParameterModel.
 

Uses of FormProcessException in com.arsdigita.bebop.portal
 

Methods in com.arsdigita.bebop.portal that throw FormProcessException
protected  void PortletConfigFormSection.initWidgets(PageState state, Portlet portlet)
           
protected  void PortletConfigFormSection.validateWidgets(PageState state, Portlet portlet)
           
protected  void PortletConfigFormSection.processWidgets(PageState state, Portlet portlet)
           
 

Uses of FormProcessException in com.arsdigita.formbuilder.ui
 

Methods in com.arsdigita.formbuilder.ui that throw FormProcessException
 void PlaceholdersInitListener.init(FormSectionEvent e)
           
 void FormCompletionListener.complete(FormSectionEvent e)
           
 void PropertiesEditor.PropertiesFormProcessListener.process(FormSectionEvent e)
           
 void PropertiesEditor.PropertiesFormSubmissionListener.submitted(FormSectionEvent e)
           
 

Uses of FormProcessException in com.arsdigita.formbuilder.ui.editors
 

Methods in com.arsdigita.formbuilder.ui.editors that throw FormProcessException
protected  void XMLEmailForm.initWidgets(FormSectionEvent e, PersistentProcessListener listener)
           
protected  void XMLEmailForm.processWidgets(FormSectionEvent e, PersistentProcessListener listener)
           
protected  void TextFieldForm.initWidgets(FormSectionEvent e, PersistentWidget w)
           
protected  void TextFieldForm.processWidgets(FormSectionEvent e, PersistentWidget w)
           
protected  void TextAreaForm.initWidgets(FormSectionEvent e, PersistentWidget w)
           
protected  void TextAreaForm.processWidgets(FormSectionEvent e, PersistentWidget w)
           
protected  void TemplateEmailForm.initWidgets(FormSectionEvent e, PersistentProcessListener listener)
           
protected  void TemplateEmailForm.processWidgets(FormSectionEvent e, PersistentProcessListener listener)
           
protected  void SubmitForm.initWidgets(FormSectionEvent e, PersistentWidget w)
           
protected  void SubmitForm.processWidgets(FormSectionEvent e, PersistentWidget w)
           
protected  void SimpleEmailForm.initWidgets(FormSectionEvent e, PersistentProcessListener listener)
           
protected  void SimpleEmailForm.processWidgets(FormSectionEvent e, PersistentProcessListener listener)
           
protected  void RemoteServerPostForm.initWidgets(FormSectionEvent e, PersistentProcessListener listener)
           
protected  void RemoteServerPostForm.processWidgets(FormSectionEvent e, PersistentProcessListener listener)
           
protected  void PasswordForm.initWidgets(FormSectionEvent e, PersistentWidget w)
           
protected  void PasswordForm.processWidgets(FormSectionEvent e, PersistentWidget w)
           
protected  void HiddenForm.initWidgets(FormSectionEvent e, PersistentWidget w)
           
protected  void HiddenForm.processWidgets(FormSectionEvent e, PersistentWidget w)
           
 void TextForm.init(FormSectionEvent e)
           
 void TextForm.process(FormSectionEvent e)
           
protected  void TextForm.addToForm(FormSectionEvent e, PersistentText widget)
           
protected  void DateForm.initWidgets(FormSectionEvent e, PersistentWidget w)
           
protected  void DateForm.processWidgets(FormSectionEvent e, PersistentWidget w)
           
protected  void DataDrivenSelectForm.initWidgets(FormSectionEvent e, PersistentWidget w)
           
protected  void DataDrivenSelectForm.processWidgets(FormSectionEvent e, PersistentWidget w)
           
protected  void ConfirmRedirectForm.initWidgets(FormSectionEvent e, PersistentProcessListener listener)
           
protected  void ConfirmRedirectForm.processWidgets(FormSectionEvent e, PersistentProcessListener listener)
           
protected  void ProcessListenerForm.initWidgets(FormSectionEvent e, PersistentProcessListener l)
           
protected  void ProcessListenerForm.processWidgets(FormSectionEvent e, PersistentProcessListener l)
           
protected  void ProcessListenerForm.addToForm(FormSectionEvent e, PersistentProcessListener l)
           
protected  void ConfirmEmailForm.initWidgets(FormSectionEvent e, PersistentProcessListener listener)
           
protected  void ConfirmEmailForm.processWidgets(FormSectionEvent e, PersistentProcessListener listener)
           
protected  void WidgetForm.initWidgets(FormSectionEvent e, PersistentWidget widget)
           
protected  void WidgetForm.processWidgets(FormSectionEvent e, PersistentWidget widget)
           
protected  void WidgetForm.addToForm(FormSectionEvent e, PersistentWidget widget)
           
protected  void WidgetLabelForm.initWidgets(FormSectionEvent e, PersistentWidget widget)
           
protected  void WidgetLabelForm.processWidgets(FormSectionEvent e, PersistentWidget widget)
           
protected  void WidgetLabelForm.addToForm(FormSectionEvent e, PersistentWidget widget)
           
protected  void OptionGroupForm.initWidgets(FormSectionEvent e, PersistentWidget w)
           
protected  void OptionGroupForm.processWidgets(FormSectionEvent e, PersistentWidget w)
           
 

Uses of FormProcessException in com.arsdigita.toolbox.ui
 

Methods in com.arsdigita.toolbox.ui that throw FormProcessException
 void ModalPanel.FormNavigationListener.process(FormSectionEvent e)
           
 void ModalPanel.WidgetNavigationListener.process(FormSectionEvent e)
           
 void ModalPanel.CancelListener.submitted(FormSectionEvent e)
           
 void ModalPanel.FinishListener.process(FormSectionEvent e)
           
 void ModalPanel.ResumeListener.process(FormSectionEvent e)
           
 

Uses of FormProcessException in com.arsdigita.ui.login
 

Methods in com.arsdigita.ui.login that throw FormProcessException
 void UserRegistrationForm.init(FormSectionEvent event)
           
 void UserRegistrationForm.validate(FormSectionEvent event)
           
 void UserRegistrationForm.process(FormSectionEvent event)
           
protected  void UserRegistrationForm.loginUser(FormSectionEvent event)
          Logs in the user using the username, password, and "Remember this login?" request stored in the given form event.
protected  void UserRegistrationForm.onLoginSuccess(FormSectionEvent event)
          Executed when login succeeds.
protected  void UserRegistrationForm.onBadPassword(FormSectionEvent event, javax.security.auth.login.FailedLoginException e)
           
protected  void UserRegistrationForm.onLoginFail(FormSectionEvent event, javax.security.auth.login.LoginException e)
          Executed when login fails with a bad password or when autoLoginOn is set to false and the user doesn't exist.
protected  void UserRegistrationForm.onAccountNotFound(FormSectionEvent event, AccountNotFoundException e)
          Executed when login fails for an unrecognized user.
protected  void UserRegistrationForm.onLoginException(FormSectionEvent event, javax.security.auth.login.LoginException e)
          Executed when login fails for an unrecognized problem.
 void UserNewForm.init(FormSectionEvent event)
           
 void UserNewForm.process(FormSectionEvent event)
           
 void UserForm.init(FormSectionEvent event)
          Initializes this form with data from the user.
 void UserForm.validate(FormSectionEvent event)
          Validates this form.
 void UserEditForm.process(FormSectionEvent event)
           
 void ChangePasswordForm.validate(FormSectionEvent event)
           
 void ChangePasswordForm.process(FormSectionEvent event)
           
 

Uses of FormProcessException in com.arsdigita.ui.permissions
 

Methods in com.arsdigita.ui.permissions that throw FormProcessException
 void UserSearchForm.process(FormSectionEvent e)
           
 

Uses of FormProcessException in com.arsdigita.web.ui
 

Methods in com.arsdigita.web.ui that throw FormProcessException
protected  void ApplicationConfigFormSection.initWidgets(PageState state, Application application)
          Initialize the form fields
protected  void ApplicationConfigFormSection.validateWidgets(PageState state, Application application)
          Validates the form fields
protected  void ApplicationConfigFormSection.processWidgets(PageState state, Application application)
          Processes the form submission
 



Copyright (c) 2004 Red Hat, Inc. Corporation. All Rights Reserved. Generated at July 21 2004:2337 UTC