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

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

Introduction

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

Prototype

@Override
    public Object getAttribute(String name, int scope) 

Source Link

Usage

From source file:com.autentia.wuija.widget.ChangePasswordCtrl.java

public int getMaximumValidityPeriodOnDays() {
    FacesRequestAttributes attr = (FacesRequestAttributes) RequestContextHolder.currentRequestAttributes();
    return ((Integer) attr.getAttribute("MAXIMUM_VALIDITY_PERIOD", RequestAttributes.SCOPE_SESSION)).intValue();
}