Class MultipartRelatedNode


  • public class MultipartRelatedNode
    extends Node
    This Node handles multipart/related MIME parts. The Multipart/Related content type provides a common mechanism for representing objects that are aggregates of related MIME body parts. This node forwards the root part of a multipart/related container, but makes other parts of it available, too, by supplying a com.levigo.jadice.server.core.StreamResolver to downstream workers which allows them to access the other parts via their Content-ID.
    • Constructor Detail

      • MultipartRelatedNode

        public MultipartRelatedNode()
    • Method Detail

      • getWorkerClassName

        public String getWorkerClassName()
        Description copied from class: Node
        Return the node's associated com.levigo.jadice.server.core.NodeWorker full qualified class's name. By default, the worker class name is
        • The same as the node name with the trailing "Node" replaced by "Worker" if the node name ends in "Node"
        • The node class name with an appended "Worker" otherwise.
        The package name of the worker class is the name of the Node's package with an appended ".worker".

        This behavior can be overridden in concrete subclasses.

        Overrides:
        getWorkerClassName in class Node
        Returns:
        the full qualified class name of the worker of this node.