Package org.glassfish.grizzly.config.dom
Interface ProtocolChain
- All Superinterfaces:
org.jvnet.hk2.config.ConfigBeanProxy,org.jvnet.hk2.config.types.PropertyBag
public interface ProtocolChain
extends org.jvnet.hk2.config.ConfigBeanProxy, org.jvnet.hk2.config.types.PropertyBag
Defines the type of protocol chain and describes protocol filters, which will participate in request processing
-
Nested Class Summary
Nested Classes -
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionProtocol chain instance handler implementation classDefines protocol filter sequence, which will process a request.@Pattern(regexp="STATELESS|STATEFUL",message="Valid values: STATELESS|STATEFUL") StringgetType()Protocol chain type.voidsetClassname(String value) voidsetProtocolFilter(List<ProtocolFilter> list) voidMethods inherited from interface org.jvnet.hk2.config.ConfigBeanProxy
createChild, deepCopy, getParentMethods inherited from interface org.jvnet.hk2.config.types.PropertyBag
addProperty, getProperty, getProperty, getPropertyValue, getPropertyValue, lookupProperty, removeProperty, removeProperty
-
Field Details
-
TYPE
- See Also:
-
TYPE_PATTERN
- See Also:
-
-
Method Details
-
getClassname
String getClassname()Protocol chain instance handler implementation class -
setClassname
-
getType
@Pattern(regexp="STATELESS|STATEFUL", message="Valid values: STATELESS|STATEFUL") @Pattern(regexp="STATELESS|STATEFUL",message="Valid values: STATELESS|STATEFUL") String getType()Protocol chain type. Could be STATEFUL or STATELESS -
setType
-
getProtocolFilter
List<ProtocolFilter> getProtocolFilter()Defines protocol filter sequence, which will process a request. -
setProtocolFilter
-
getParent
- Specified by:
getParentin interfaceorg.jvnet.hk2.config.ConfigBeanProxy
-