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

org.openas2.logging.Formatter Maven / Gradle / Ivy

Go to download

Open source implementation of the AS2 standard for signed encrypted and compressed document transfer

There is a newer version: 2.10.1
Show newest version
package org.openas2.logging;

import java.io.OutputStream;


public interface Formatter {
	
	public String format(Level level, String msg);
	
	public String format(Throwable t, boolean terminated);
	
	public void format(Level level, String msg, OutputStream out);
	
	public void format(Throwable t, boolean terminated, OutputStream out);
	
	public void setDateFormat(String dateFormat);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy