Class 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.String getImplName()
      Returns the implementation name.
      java.lang.Class<? extends Layer> getLayerClass()
      Returns the layer class.
      boolean isPlugin()
      Returns true if the layer is a plugin or false in the otherwise.
      boolean isStateful()
      Returns true if the layer is a stateful instance or false in the otherwise.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 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.