Browse Source

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

pull/196/head
Juergen Hoeller 13 years ago committed by unknown
parent
commit
738c643592
  1. 3
      spring-web/src/main/java/org/springframework/web/jsf/DelegatingVariableResolver.java
  2. 3
      spring-web/src/main/java/org/springframework/web/jsf/SpringBeanVariableResolver.java
  3. 3
      spring-web/src/main/java/org/springframework/web/jsf/WebApplicationContextVariableResolver.java

3
spring-web/src/main/java/org/springframework/web/jsf/DelegatingVariableResolver.java

@ -69,7 +69,10 @@ import org.springframework.web.context.WebApplicationContext; @@ -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 */

3
spring-web/src/main/java/org/springframework/web/jsf/SpringBeanVariableResolver.java

@ -31,7 +31,10 @@ import javax.faces.el.VariableResolver; @@ -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) {

3
spring-web/src/main/java/org/springframework/web/jsf/WebApplicationContextVariableResolver.java

@ -47,7 +47,10 @@ import org.springframework.web.context.WebApplicationContext; @@ -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 {
/**

Loading…
Cancel
Save