Package org.hcjf.service
Class ServiceSession.LayerStackElement
- java.lang.Object
-
- org.hcjf.service.ServiceSession.LayerStackElement
-
- Enclosing class:
- ServiceSession
public static final class ServiceSession.LayerStackElement extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description LayerStackElement(java.lang.Class<? extends Layer> layerClass, java.lang.String implName, boolean plugin, boolean stateful)
-
Method Summary
Modifier and Type Method Description java.lang.StringgetImplName()Returns the implementation name.java.lang.Class<? extends Layer>getLayerClass()Returns the layer class.booleanisPlugin()Returns true if the layer is a plugin or false in the otherwise.booleanisStateful()Returns true if the layer is a stateful instance or false in the otherwise.
-
-
-
Constructor Detail
-
LayerStackElement
public LayerStackElement(java.lang.Class<? extends Layer> layerClass, java.lang.String implName, boolean plugin, boolean stateful)
-
-
Method Detail
-
getLayerClass
public java.lang.Class<? extends Layer> getLayerClass()
Returns the layer class.- Returns:
- Layer class.
-
getImplName
public java.lang.String getImplName()
Returns the implementation name.- Returns:
- Implementation name.
-
isPlugin
public boolean isPlugin()
Returns true if the layer is a plugin or false in the otherwise.- Returns:
- Plugin value.
-
isStateful
public boolean isStateful()
Returns true if the layer is a stateful instance or false in the otherwise.- Returns:
- Stateful value.
-
-