public class BeanLifecycle extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
static BeanLifecycle |
NONE
No lifecycle; the bean is created fresh on each reference and not retained.
|
static BeanLifecycle |
PAGE
The bean is created once and reused for the lifespan of the page containing the component.
|
static BeanLifecycle |
RENDER
The bean is create and reused until the end of the current render, at which point it is
discarded.
|
static BeanLifecycle |
REQUEST
The standard lifecycle; the bean is retained for the duration of the request cycle and is
discarded at the end of the request cycle.
|
public static final BeanLifecycle NONE
public static final BeanLifecycle REQUEST
public static final BeanLifecycle PAGE
public static final BeanLifecycle RENDER