com.janosgats.flexibleappender.enableable.CompositeEnableable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flexible-appender Show documentation
Show all versions of flexible-appender Show documentation
A convenient and customizable appender library for log4j.
package com.janosgats.flexibleappender.enableable;
import java.util.LinkedList;
/**
* Execute multiple enablers by using this enabler!
*
* Feel free to override one of these Enableables to create your own!
*/
public abstract class CompositeEnableable extends AbstractEnableable {
protected LinkedList abstractEnableables = new LinkedList<>();
public LinkedList getAbstractEnableables() {
return abstractEnableables;
}
public void setAbstractEnableables(LinkedList abstractEnableables) {
this.abstractEnableables = abstractEnableables;
}
}