Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
public class ExampleAction extends ActionSupport {
	@In (required=false, scope=ScopeType.CONVERSATION)
	@Out (required=false, scope=ScopeType.CONVERSATION)
	private ExampleBean exampleBean;
	...	
	@Begin
	public String startConversation() {
		exampleBean = new ExampleBean();
		return SUCCESS;
	}
	
	public String doStuffinConversation() {
		return SUCCESS;
	}
	
	@End
	public String endConversation() {
		return SUCCESS;
	}
	...
}

...