Class PipelineSink

java.lang.Object
org.apache.maven.doxia.sink.impl.PipelineSink
All Implemented Interfaces:
InvocationHandler

@Deprecated public class PipelineSink extends Object implements InvocationHandler
Deprecated.
Use the SinkWrapper approach which doesn't require the use of dynamic proxies.
May be used to invoke the same method on a List of Sinks.
Author:
Trygve Laugstøl
See Also:
  • Constructor Summary

    Constructors
    Constructor
    Description
    PipelineSink(List<org.apache.maven.doxia.sink.Sink> pipeline)
    Deprecated.
    Constructs a PipelineSink for a given List of Sinks.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    addSink(org.apache.maven.doxia.sink.Sink sink)
    Deprecated.
    Add a Sink to the List of Sinks.
    invoke(Object proxy, Method method, Object[] args)
    Deprecated.
    Invoke a Method on this PipelineSink.
    static org.apache.maven.doxia.sink.Sink
    newInstance(List<org.apache.maven.doxia.sink.Sink> pipeline)
    Deprecated.
    Returns an instance of a PipelineSink as a Sink.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • PipelineSink

      public PipelineSink(List<org.apache.maven.doxia.sink.Sink> pipeline)
      Deprecated.
      Constructs a PipelineSink for a given List of Sinks.
      Parameters:
      pipeline - A List of Sinks.
  • Method Details