org.wildfly.swarm.config.logging.FileHandler Maven / Gradle / Ivy
package org.wildfly.swarm.config.logging;
import org.wildfly.config.runtime.Implicit;
import org.wildfly.config.runtime.ResourceType;
import org.wildfly.config.runtime.ModelNodeBinding;
import java.util.Map;
/**
* Defines a handler which writes to a file.
*/
@ResourceType("file-handler")
public class FileHandler {
private String key;
private Boolean append;
private Boolean autoflush;
private Boolean enabled;
private String encoding;
private Map file;
private String filterSpec;
private String formatter;
private String level;
private String namedFormatter;
public FileHandler(String key) {
this.key = key;
}
public String getKey() {
return this.key;
}
/**
* Specify whether to append to the target file.
*/
@ModelNodeBinding(detypedName = "append")
public Boolean append() {
return this.append;
}
/**
* Specify whether to append to the target file.
*/
@SuppressWarnings("unchecked")
public FileHandler append(Boolean value) {
this.append = value;
return (FileHandler) this;
}
/**
* Automatically flush after each write.
*/
@ModelNodeBinding(detypedName = "autoflush")
public Boolean autoflush() {
return this.autoflush;
}
/**
* Automatically flush after each write.
*/
@SuppressWarnings("unchecked")
public FileHandler autoflush(Boolean value) {
this.autoflush = value;
return (FileHandler) this;
}
/**
* If set to true the handler is enabled and functioning as normal, if set to false the handler is ignored when processing log messages.
*/
@ModelNodeBinding(detypedName = "enabled")
public Boolean enabled() {
return this.enabled;
}
/**
* If set to true the handler is enabled and functioning as normal, if set to false the handler is ignored when processing log messages.
*/
@SuppressWarnings("unchecked")
public FileHandler enabled(Boolean value) {
this.enabled = value;
return (FileHandler) this;
}
/**
* The character encoding used by this Handler.
*/
@ModelNodeBinding(detypedName = "encoding")
public String encoding() {
return this.encoding;
}
/**
* The character encoding used by this Handler.
*/
@SuppressWarnings("unchecked")
public FileHandler encoding(String value) {
this.encoding = value;
return (FileHandler) this;
}
/**
* The file description consisting of the path and optional relative to path.
*/
@ModelNodeBinding(detypedName = "file")
public Map file() {
return this.file;
}
/**
* The file description consisting of the path and optional relative to path.
*/
@SuppressWarnings("unchecked")
public FileHandler file(Map value) {
this.file = value;
return (FileHandler) this;
}
/**
* A filter expression value to define a filter. Example for a filter that does not match a pattern: not(match("JBAS.*"))
*/
@ModelNodeBinding(detypedName = "filter-spec")
public String filterSpec() {
return this.filterSpec;
}
/**
* A filter expression value to define a filter. Example for a filter that does not match a pattern: not(match("JBAS.*"))
*/
@SuppressWarnings("unchecked")
public FileHandler filterSpec(String value) {
this.filterSpec = value;
return (FileHandler) this;
}
/**
* Defines a pattern for the formatter.
*/
@ModelNodeBinding(detypedName = "formatter")
public String formatter() {
return this.formatter;
}
/**
* Defines a pattern for the formatter.
*/
@SuppressWarnings("unchecked")
public FileHandler formatter(String value) {
this.formatter = value;
return (FileHandler) this;
}
/**
* The log level specifying which message levels will be logged by this logger. Message levels lower than this value will be discarded.
*/
@ModelNodeBinding(detypedName = "level")
public String level() {
return this.level;
}
/**
* The log level specifying which message levels will be logged by this logger. Message levels lower than this value will be discarded.
*/
@SuppressWarnings("unchecked")
public FileHandler level(String value) {
this.level = value;
return (FileHandler) this;
}
/**
* The name of the defined formatter to be used on the handler.
*/
@ModelNodeBinding(detypedName = "named-formatter")
public String namedFormatter() {
return this.namedFormatter;
}
/**
* The name of the defined formatter to be used on the handler.
*/
@SuppressWarnings("unchecked")
public FileHandler namedFormatter(String value) {
this.namedFormatter = value;
return (FileHandler) this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy