Deprecated JSF 1.1 VariableResolver implementations in favor of Spring-provided ELResolvers

This commit is contained in:
Juergen Hoeller
2012-12-04 15:35:33 +01:00
committed by unknown
parent 184361a096
commit 738c643592
3 changed files with 9 additions and 0 deletions

View File

@@ -69,7 +69,10 @@ import org.springframework.web.context.WebApplicationContext;
* @since 1.1
* @see WebApplicationContextVariableResolver
* @see FacesContextUtils#getRequiredWebApplicationContext
* @deprecated as of Spring 3.2, in favor of the JSF 1.2 based
* {@link org.springframework.web.jsf.el.SpringBeanFacesELResolver}
*/
@Deprecated
public class DelegatingVariableResolver extends VariableResolver {
/** Logger available to subclasses */

View File

@@ -31,7 +31,10 @@ import javax.faces.el.VariableResolver;
* @since 2.5
* @see WebApplicationContextVariableResolver
* @see FacesContextUtils#getRequiredWebApplicationContext
* @deprecated as of Spring 3.2, in favor of the JSF 1.2 based
* {@link org.springframework.web.jsf.el.SpringBeanFacesELResolver}
*/
@Deprecated
public class SpringBeanVariableResolver extends DelegatingVariableResolver {
public SpringBeanVariableResolver(VariableResolver originalVariableResolver) {

View File

@@ -47,7 +47,10 @@ import org.springframework.web.context.WebApplicationContext;
* @since 1.2.5
* @see DelegatingVariableResolver
* @see FacesContextUtils#getWebApplicationContext
* @deprecated as of Spring 3.2, in favor of the JSF 1.2 based
* {@link org.springframework.web.jsf.el.WebApplicationContextFacesELResolver}
*/
@Deprecated
public class WebApplicationContextVariableResolver extends VariableResolver {
/**