org.jboss.seam.faces.context.conversation
Annotation Type End


@InterceptorBinding
@Target(value={METHOD,TYPE})
@Retention(value=RUNTIME)
public @interface End

Ends a persistent Conversation.

Note: Unless the exception is of a permitted type, if this method throws an exception, the conversation will not be ended.

Author:
Lincoln Baxter, III

Optional Element Summary
 Class<? extends Exception>[] permit
          Sets the exception types for which, when encountered during a method invocation, the Conversation will still end.
 

permit

public abstract Class<? extends Exception>[] permit
Sets the exception types for which, when encountered during a method invocation, the Conversation will still end. (In other words: These exceptions do not abort @End)

By default: { empty array } - all encountered exceptions will cause the Conversation to remain open.

Default:
{}


Copyright © 2011 Seam Framework. All Rights Reserved.