Example usage for org.springframework.web.context.request FacesRequestAttributes resolveReference

List of usage examples for org.springframework.web.context.request FacesRequestAttributes resolveReference

Introduction

In this page you can find the example usage for org.springframework.web.context.request FacesRequestAttributes resolveReference.

Prototype

@Override
    public Object resolveReference(String key) 

Source Link

Usage

From source file:de.inetsource.jsfforum.config.ViewScope.java

@Override
public Object resolveContextualObject(String key) {
    FacesContext facesContext = FacesContext.getCurrentInstance();
    FacesRequestAttributes facesResquestAttributes = new FacesRequestAttributes(facesContext);
    return facesResquestAttributes.resolveReference(key);
}