All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.ebean.enhance.common.SysoutMessageOutput Maven / Gradle / Ivy

package io.ebean.enhance.common;

import io.ebean.enhance.entity.MessageOutput;

import java.io.PrintStream;

/**
 * MessageOutput typically used with System.out.
 */
public class SysoutMessageOutput implements MessageOutput {

  private final PrintStream writer;

  public SysoutMessageOutput(PrintStream writer) {
    this.writer = writer;
  }

  @Override
  public void println(String message) {
    writer.println(message);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy