Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Fixed ../apidocs/ links

...

Code Block
java
java
public class UpcasePostFilter implements StringTransformFilter
{
  public String transform(String input, StringTransformService delegate)
  {
    return delegate.transform(input).toUpperCase();
  }
}

The PipelineBuilder service is useful for constructing pipelines. The service is often injected into a service builder method, along with an ordered configuration of services.

...