@ConsumerType public abstract class RequestAttributeInspectorWrapper extends java.lang.Object implements RequestAttributeInspector, javax.faces.FacesWrapper<RequestAttributeInspector>
| Constructor and Description |
|---|
RequestAttributeInspectorWrapper() |
| 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).
|
abstract RequestAttributeInspector |
getWrapped() |
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.
|
public abstract RequestAttributeInspector getWrapped()
getWrapped in interface javax.faces.FacesWrapper<RequestAttributeInspector>public boolean containsExcludedNamespace(java.lang.String name)
RequestAttributeInspectorcontainsExcludedNamespace in interface RequestAttributeInspectorname - The request attribute name.true. Otherwise, the
return value is false.public boolean isExcludedByAnnotation(java.lang.String name,
java.lang.Object value)
RequestAttributeInspectorExcludeFromManagedRequestScope.isExcludedByAnnotation in interface RequestAttributeInspectorname - The request attribute name.value - The request attribute value.true. Otherwise, the
return value is false.public boolean isExcludedByConfig(java.lang.String name,
java.lang.Object value)
RequestAttributeInspectorbridge:excluded-attributes element within the faces-config.xml
descriptor.isExcludedByConfig in interface RequestAttributeInspectorname - The request attribute name.value - The request attribute value.true. Otherwise, the
return value is false.public boolean isExcludedByPreExisting(java.lang.String name,
java.lang.Object value)
RequestAttributeInspectorFacesContext.isExcludedByPreExisting in interface RequestAttributeInspectorname - The request attribute name.value - The request attribute value.true. Otherwise, the
return value is false.public boolean isExcludedByType(java.lang.String name,
java.lang.Object value)
RequestAttributeInspectorisExcludedByType in interface RequestAttributeInspectorname - The request attribute name.value - The request attribute value.true. Otherwise, the
return value is false.Copyright © 2020 Liferay, Inc. All Rights Reserved.