站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > JBoss Seam 1.1.0 cr1 API 英文版文档

Redirect (JBoss Seam API Documentation) - JBoss Seam 1.1.0 cr1 API 英文版文档


org.jboss.seam.annotations
Annotation Type Redirect


@Target(value=TYPE)
@Retention(value=RUNTIME)
@Documented
@Inherited
public @interface Redirect

Specifies that an exception should result in a browser redirect.

Author:
Gavin King

Required Element Summary
 String viewId
          The view to redirect to, default to the current view.
 
Optional Element Summary
 boolean end
          Should the current long-running conversation end when this exception occurs.
 String message
          The message to be displayed as a FacesMessage, default to using the exception message.
 boolean rollback
          Should the transaction be rolled back when this exception occurs.
 

Element Detail

viewId

public abstract String viewId
The view to redirect to, default to the current view.

Returns:
a JSF view id

message

public abstract String message
The message to be displayed as a FacesMessage, default to using the exception message.

Returns:
a templated message
Default:
""

end

public abstract boolean end
Should the current long-running conversation end when this exception occurs.

Returns:
true if we should end the conversation
Default:
false

rollback

public abstract boolean rollback
Should the transaction be rolled back when this exception occurs.

Returns:
true if we should end the conversation
Default:
false