Skip to content

Instantly share code, notes, and snippets.

/MyWizard.java Secret

Created July 9, 2015 13:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/c9c7a4b515a3380f6cd6 to your computer and use it in GitHub Desktop.
Save anonymous/c9c7a4b515a3380f6cd6 to your computer and use it in GitHub Desktop.
@ConversationScoped
public class MyWizard {
@Inject
private Conversation conversation;
public void startWizard() {
conversation.begin();
}
public void endWizard() {
conversation.end();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment