org.jboss.seam.annotations.web
Annotation Type Filter


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

Annotates a servlet filter that should be installed by Seam's master filter and specifies its ordering with respect to other filters in the stack.

See Also:
AbstractFilter

Optional Element Summary
 String[] around
          Specifies that a filter is called "around" another filter or filters.
 String[] within
          Specifies that an filter is called "within" another filter or filterss.
 

around

public abstract String[] around
Specifies that a filter is called "around" another filter or filters.

Default:
{}

within

public abstract String[] within
Specifies that an filter is called "within" another filter or filterss.

Default:
{}