Package net.webpdf.wsclient.openapi
Class ServerConfigHostFilter
- java.lang.Object
-
- net.webpdf.wsclient.openapi.ServerConfigHostFilter
-
public class ServerConfigHostFilter extends Object
A `filter` element represents a component to insert into the request processing pipeline of the underlying Tomcat server. (See: https://tomcat.apache.org/tomcat-10.1-doc/config/filter.html for further information.)
-
-
Field Summary
Fields Modifier and Type Field Description static StringJSON_PROPERTY_CLASS_NAMEstatic StringJSON_PROPERTY_MAPPINGstatic StringJSON_PROPERTY_PARAMETER
-
Constructor Summary
Constructors Constructor Description ServerConfigHostFilter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ServerConfigHostFilteraddMappingItem(ServerConfigHostFilterMapping mappingItem)ServerConfigHostFilteraddParameterItem(ServerConfigHostFilterParameter parameterItem)ServerConfigHostFilterclassName(String className)booleanequals(Object o)@Nullable StringgetClassName()The Java class name of the filter implementation to use.@Nullable List<ServerConfigHostFilterMapping>getMapping()Get mapping@Nullable List<ServerConfigHostFilterParameter>getParameter()Get parameterinthashCode()ServerConfigHostFiltermapping(List<ServerConfigHostFilterMapping> mapping)ServerConfigHostFilterparameter(List<ServerConfigHostFilterParameter> parameter)voidsetClassName(String className)voidsetMapping(List<ServerConfigHostFilterMapping> mapping)voidsetParameter(List<ServerConfigHostFilterParameter> parameter)StringtoString()
-
-
-
Field Detail
-
JSON_PROPERTY_CLASS_NAME
public static final String JSON_PROPERTY_CLASS_NAME
- See Also:
- Constant Field Values
-
JSON_PROPERTY_MAPPING
public static final String JSON_PROPERTY_MAPPING
- See Also:
- Constant Field Values
-
JSON_PROPERTY_PARAMETER
public static final String JSON_PROPERTY_PARAMETER
- See Also:
- Constant Field Values
-
-
Method Detail
-
className
public ServerConfigHostFilter className(String className)
-
getClassName
@Nullable public @Nullable String getClassName()
The Java class name of the filter implementation to use.- Returns:
- className
-
setClassName
public void setClassName(String className)
-
mapping
public ServerConfigHostFilter mapping(List<ServerConfigHostFilterMapping> mapping)
-
addMappingItem
public ServerConfigHostFilter addMappingItem(ServerConfigHostFilterMapping mappingItem)
-
getMapping
@Nullable public @Nullable List<ServerConfigHostFilterMapping> getMapping()
Get mapping- Returns:
- mapping
-
setMapping
public void setMapping(List<ServerConfigHostFilterMapping> mapping)
-
parameter
public ServerConfigHostFilter parameter(List<ServerConfigHostFilterParameter> parameter)
-
addParameterItem
public ServerConfigHostFilter addParameterItem(ServerConfigHostFilterParameter parameterItem)
-
getParameter
@Nullable public @Nullable List<ServerConfigHostFilterParameter> getParameter()
Get parameter- Returns:
- parameter
-
setParameter
public void setParameter(List<ServerConfigHostFilterParameter> parameter)
-
-