public class FilterType extends Object
Java class for filterType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="filterType">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<group ref="{http://java.sun.com/xml/ns/javaee}descriptionGroup"/>
<element name="filter-name" type="{http://java.sun.com/xml/ns/javaee}filter-nameType"/>
<element name="filter-class" type="{http://java.sun.com/xml/ns/javaee}fully-qualified-classType" minOccurs="0"/>
<element name="async-supported" type="{http://java.sun.com/xml/ns/javaee}true-falseType" minOccurs="0"/>
<element name="init-param" type="{http://java.sun.com/xml/ns/javaee}param-valueType" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
<attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
</restriction>
</complexContent>
</complexType>
| Modifier and Type | Field and Description |
|---|---|
protected TrueFalseType |
asyncSupported |
protected List<DescriptionType> |
description |
protected List<DisplayNameType> |
displayName |
protected FullyQualifiedClassType |
filterClass |
protected FilterNameType |
filterName |
protected List<IconType> |
icon |
protected String |
id |
protected List<ParamValueType> |
initParam |
| Constructor and Description |
|---|
FilterType() |
protected List<DescriptionType> description
protected List<DisplayNameType> displayName
protected FilterNameType filterName
protected FullyQualifiedClassType filterClass
protected TrueFalseType asyncSupported
protected List<ParamValueType> initParam
protected String id
public List<DescriptionType> getDescription()
This accessor method returns a reference to the live list,
not a snapshot. Therefore any modification you make to the
returned list will be present inside the JAXB object.
This is why there is not a set method for the description property.
For example, to add a new item, do as follows:
getDescription().add(newItem);
Objects of the following type(s) are allowed in the list
DescriptionType
public List<DisplayNameType> getDisplayName()
This accessor method returns a reference to the live list,
not a snapshot. Therefore any modification you make to the
returned list will be present inside the JAXB object.
This is why there is not a set method for the displayName property.
For example, to add a new item, do as follows:
getDisplayName().add(newItem);
Objects of the following type(s) are allowed in the list
DisplayNameType
public List<IconType> getIcon()
This accessor method returns a reference to the live list,
not a snapshot. Therefore any modification you make to the
returned list will be present inside the JAXB object.
This is why there is not a set method for the icon property.
For example, to add a new item, do as follows:
getIcon().add(newItem);
Objects of the following type(s) are allowed in the list
IconType
public FilterNameType getFilterName()
FilterNameTypepublic void setFilterName(FilterNameType value)
value - allowed object is
FilterNameTypepublic FullyQualifiedClassType getFilterClass()
FullyQualifiedClassTypepublic void setFilterClass(FullyQualifiedClassType value)
value - allowed object is
FullyQualifiedClassTypepublic TrueFalseType getAsyncSupported()
TrueFalseTypepublic void setAsyncSupported(TrueFalseType value)
value - allowed object is
TrueFalseTypepublic List<ParamValueType> getInitParam()
This accessor method returns a reference to the live list,
not a snapshot. Therefore any modification you make to the
returned list will be present inside the JAXB object.
This is why there is not a set method for the initParam property.
For example, to add a new item, do as follows:
getInitParam().add(newItem);
Objects of the following type(s) are allowed in the list
ParamValueType
public void setId(String value)
value - allowed object is
Stringpublic FilterType withDescription(DescriptionType... values)
public FilterType withDescription(Collection<DescriptionType> values)
public FilterType withDisplayName(DisplayNameType... values)
public FilterType withDisplayName(Collection<DisplayNameType> values)
public FilterType withIcon(IconType... values)
public FilterType withIcon(Collection<IconType> values)
public FilterType withFilterName(FilterNameType value)
public FilterType withFilterClass(FullyQualifiedClassType value)
public FilterType withAsyncSupported(TrueFalseType value)
public FilterType withInitParam(ParamValueType... values)
public FilterType withInitParam(Collection<ParamValueType> values)
public FilterType withId(String value)
Copyright © 2020. All rights reserved.