@ProviderType
public interface RequestAttributeInspector
| Modifier and Type | Method and Description |
|---|---|
boolean |
containsExcludedNamespace(java.lang.String name)
Determines whether or not a request attribute is to be excluded from the bridge request scope because the
specified name name starts with a particular sequence of characters (a namespace).
|
boolean |
isExcludedByAnnotation(java.lang.String name,
java.lang.Object value)
Determines whether or not a request attribute is to be excluded from the bridge request scope because the
specified value is an instance of a class annotated with
ExcludeFromManagedRequestScope. |
boolean |
isExcludedByConfig(java.lang.String name,
java.lang.Object value)
Determines whether or not a request attribute is to be excluded from the bridge request scope because the
specified name appears in the
bridge:excluded-attributes element within the faces-config.xml
descriptor. |
boolean |
isExcludedByPreExisting(java.lang.String name,
java.lang.Object value)
Determines whether or not a request attribute is to be excluded from the bridge request scope because the
specified name matches the name of a request attribute that existed before the bridge acquired the
FacesContext. |
boolean |
isExcludedByType(java.lang.String name,
java.lang.Object value)
Determines whether or not a request attribute is to be excluded from the bridge request scope because the
specified value is an instance of a particular class such as those listed in Section 5.1.2 of the Bridge
Specification.
|
boolean containsExcludedNamespace(java.lang.String name)
name - The request attribute name.true. Otherwise, the
return value is false.boolean isExcludedByAnnotation(java.lang.String name,
java.lang.Object value)
ExcludeFromManagedRequestScope.name - The request attribute name.value - The request attribute value.true. Otherwise, the
return value is false.boolean isExcludedByConfig(java.lang.String name,
java.lang.Object value)
bridge:excluded-attributes element within the faces-config.xml
descriptor.name - The request attribute name.value - The request attribute value.true. Otherwise, the
return value is false.boolean isExcludedByPreExisting(java.lang.String name,
java.lang.Object value)
FacesContext.name - The request attribute name.value - The request attribute value.true. Otherwise, the
return value is false.boolean isExcludedByType(java.lang.String name,
java.lang.Object value)
name - The request attribute name.value - The request attribute value.true. Otherwise, the
return value is false.Copyright © 2020 Liferay, Inc. All Rights Reserved.