 |
Search: Easy *Wizard *Documentation[^A-Za-z]
|
Topics in Projects web:
|
Changed: now 13:20
|
Changed by:
|
|
EasyWizard
%LOCKED%
|
21 Jul 2005 - 22:09 - r3
|
Main.michael_jouravlev
|
|
Easy Wizard Easy Wizard is a lightweight library for a Java web framework, which allows to define robust and controlled flow of application ...
|
|
|
EasyWizardArchitecture
%LOCKED%
|
01 Jun 2005 - 23:56 - r2
|
Main.michael_jouravlev
|
|
Architecture Architecture of Easy Wizard is modular, lean and quite simple. It consists of two major parts: Rule Engine and Dialog Manager. They are described in the ...
|
|
|
EasyWizardCreateAPrototype
%LOCKED%
|
07 Jul 2005 - 07:28 - r2
|
Main.michael_jouravlev
|
|
Prototype The first step in creating a wizard is designing a prototype. The easiest way to do it is to draw panels of your future wizard along with their fields, identify ...
|
|
|
EasyWizardDefiningRules
%LOCKED%
|
07 Jul 2005 - 07:34 - r2
|
Main.michael_jouravlev
|
|
Rules Based on the prototype designed on the previous step, we can formalize the wizard navigation rules. First step, Identification, will have two transitions: ...
|
|
|
EasyWizardDialogManager
%LOCKED%
|
24 May 2005 - 23:43 - NEW
|
Main.michael_jouravlev
|
|
Dialog Manager Struts, JSF or other frameworks perform initial processing of the input data and command. They detect the processing mode: Data Update or View Rendering ...
|
|
|
EasyWizardDomainModel
%LOCKED%
|
11 Jul 2005 - 05:00 - NEW
|
Main.michael_jouravlev
|
|
Domain Model Easy Wizard is tightly integrated with domain model. It either defines data which it uses right in the step classes, or references domain data from step ...
|
|
|
EasyWizardEvents
%LOCKED%
|
11 Jul 2005 - 03:50 - r3
|
Main.michael_jouravlev
|
|
Wizard Events Every wizard has four standard events: Next step Previous step Cancel wizard Finish wizard From user's point of view, events are ...
|
|
|
EasyWizardFiniteStateMachine
%LOCKED%
|
07 Jul 2005 - 04:15 - NEW
|
Main.michael_jouravlev
|
|
Easy Wizard State Machine To understand how the Easy Wizard is different, first let us recap how the classic finite state machine (FSM) works. Most web flow ...
|
|
|
EasyWizardJarFiles
%LOCKED%
|
11 Jul 2005 - 22:19 - r2
|
Main.michael_jouravlev
|
|
Easy Wizard JAR files The last version of Easy Wizard supports Struts only. JSF support will be updated soon. You can find the latest source code for Easy Wizard in ...
|
|
|
EasyWizardListener
%LOCKED%
|
21 Jul 2005 - 21:50 - r2
|
Main.michael_jouravlev
|
|
Transition Listener Easy Wizard defines a listener interface, which allows to listen for step change event, and to prohibit step change if needed. public interface ...
|
|
|
EasyWizardOverview
%LOCKED%
|
21 Jul 2005 - 21:34 - r7
|
Main.michael_jouravlev
|
|
Architecture Overview Easy Wizard has modular architecture and consists of two major parts: Rule Engine and Wizard Manager. Rule Engine ...
|
|
|
EasyWizardPreface
%LOCKED%
|
11 Jul 2005 - 23:06 - r3
|
Main.michael_jouravlev
|
|
Preface Creating a robust screen flow for a web application is not a simple task. Many issues must be taken into account, like dealing with input data, updating domain ...
|
|
|
EasyWizardRequestCycle
%LOCKED%
|
31 May 2005 - 22:09 - r2
|
Main.michael_jouravlev
|
|
Request/Response cycle Comparing to many other web applications, Easy Wizard suggests different approach to request/response handling. It logically follows the goals ...
|
|
|
EasyWizardResultPage
%LOCKED%
|
25 May 2005 - 00:25 - NEW
|
Main.michael_jouravlev
|
|
Result page Easy Wizard separates data input and output processes into two phases. Input data is submitted with POST request, then wizard redirects to itself and receives ...
|
|
|
EasyWizardRuleEngine
%LOCKED%
|
10 Jul 2005 - 21:16 - r3
|
Main.michael_jouravlev
|
|
Rule Engine Rule Engine is the heart of Easy Wizard. In other products the similar component can be called Flow Engine or Flow Map. Rule Engine receives command and ...
|
|
|
EasyWizardSteps
%LOCKED%
|
21 Jul 2005 - 21:40 - r4
|
Main.michael_jouravlev
|
|
Wizard Steps The steps of the signup wizard extend the WizardStep class and enhance it with specific business properties.
|
|
|
EasyWizardStepsConfirm
%LOCKED%
|
21 Jul 2005 - 21:44 - r2
|
Main.michael_jouravlev
|
|
Step 3: Confirmation There is nothing much to do on this step, could as well use anonimous class. public class StepConfirm extends WizardStep { public StepConfirm ...
|
|
|
EasyWizardStepsDetails
%LOCKED%
|
21 Jul 2005 - 21:43 - r2
|
Main.michael_jouravlev
|
|
Step 2, optional: Security Details public class StepDetails extends WizardStep { // Security questions private String securityQuestions new String { ...
|
|
|
EasyWizardStepsSignup
%LOCKED%
|
21 Jul 2005 - 21:43 - r2
|
Main.michael_jouravlev
|
|
Step 1: Identification The Identification step is defined below. It contains name and password of a prospective user, as well as "Security Flag" property, which instructs ...
|
|
|
EasyWizardStruts
%LOCKED%
|
21 Jul 2005 - 21:31 - r3
|
Main.michael_jouravlev
|
|
Struts integration Easy Wizard integrates with Struts by means of Struts Dialogs library. Struts Dialogs is a collection of action classes based on DispatchAction ...
|
|
|
EasyWizardTransitions
%LOCKED%
|
21 Jul 2005 - 21:45 - r2
|
Main.michael_jouravlev
|
|
Wizard Controller and Wizard Transitions The wizard controller extends the pre defined Wizard class and controls wizard execution. The controller of Signup Wizard ...
|
|
|
EasyWizardUserExperience
%LOCKED%
|
02 Jun 2005 - 00:58 - r2
|
Main.michael_jouravlev
|
|
User Experience User Experience of web application heavily depends on request/response cycle. Among the goals that Easy Wizard was set to solve, are: A user should ...
|
|
|
EasyWizardWebFrameworkIntegration
%LOCKED%
|
31 May 2005 - 22:16 - NEW
|
Main.michael_jouravlev
|
|
Currently Easy Wizard supports Struts and JSF as target web frameworks. It started as a Struts library, but then was refactored to provide broader framework support ...
|
|
|
WebHome
%LOCKED%
|
11 Jun 2009 - 01:04 - r117
|
Main.smoniz
|
|
Projects A Java and Support Java JEE with JBoss and others Containers. SGAAR a new System for Animal Adoption and Rescue Manager. Derived from Project ...
|
|
Number of topics: 27
|