Interface ProtocolFinder

  • All Superinterfaces:
    ConfigBeanProxy, PropertyBag

    public interface ProtocolFinder
    extends ConfigBeanProxy, PropertyBag
    Describes a protocol finder/recognizer, which is able to recognize whether incoming request belongs to the specific protocol or not. If yes - protocol-finder forwards request processing to a specific protocol.
    • Method Detail

      • getName

        String getName()
        Finder name, which could be used as reference
      • setName

        void setName​(String value)
      • getProtocol

        String getProtocol()
        Reference to a protocol, which was defined before.
      • setProtocol

        void setProtocol​(String value)
      • getClassname

        String getClassname()
        Finder logic implementation class
      • setClassname

        void setClassname​(String value)
      • getParent

        @DuckTyped
        PortUnification getParent()
        Description copied from interface: ConfigBeanProxy
        Returns 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:
        getParent in interface ConfigBeanProxy
        Returns:
        the parent configuration node.