Package org.glassfish.grizzly.config.dom
Interface ProtocolFilter
-
- All Superinterfaces:
ConfigBeanProxy,PropertyBag
public interface ProtocolFilter extends ConfigBeanProxy, PropertyBag
Defines single protocol filter in a sequence
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classProtocolFilter.Duck
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ProtocolfindProtocol()StringgetClassname()Protocol filter implementation classStringgetName()Protocol filter name, which could be used as referenceProtocolChaingetParent()Returns the parent element of this configuration element.voidsetClassname(String value)voidsetName(String value)-
Methods inherited from interface org.jvnet.hk2.config.ConfigBeanProxy
createChild, deepCopy, getParent
-
Methods inherited from interface org.jvnet.hk2.config.types.PropertyBag
addProperty, getProperty, getProperty, getPropertyValue, getPropertyValue, lookupProperty, removeProperty, removeProperty
-
-
-
-
Method Detail
-
getName
String getName()
Protocol filter name, which could be used as reference
-
setName
void setName(String value)
-
getClassname
String getClassname()
Protocol filter implementation class
-
setClassname
void setClassname(String value)
-
findProtocol
@DuckTyped Protocol findProtocol()
-
getParent
@DuckTyped ProtocolChain getParent()
Description copied from interface:ConfigBeanProxyReturns the parent element of this configuration element. It is possible to return a not null parent while the parent knows nothing of this child element. This could happen when the child element was removed from the configuration tree, yet it's parent would not have been reset.- Specified by:
getParentin interfaceConfigBeanProxy- Returns:
- the parent configuration node.
-
-