org.kie.spring.factorybeans.LoggerAdaptor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kie-spring Show documentation
Show all versions of kie-spring Show documentation
Drools and jBPM integration for Spring.
/*
* Copyright 2013 Red Hat, Inc. and/or its affiliates.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.kie.spring.factorybeans;
import org.kie.api.logger.KieRuntimeLogger;
import java.io.Serializable;
public class LoggerAdaptor implements Serializable {
public static enum KNOWLEDGE_LOGGER_TYPE {
LOGGER_TYPE_FILE, LOGGER_TYPE_CONSOLE, LOGGER_TYPE_THREADED_FILE
}
String file;
int interval;
KNOWLEDGE_LOGGER_TYPE loggerType = KNOWLEDGE_LOGGER_TYPE.LOGGER_TYPE_CONSOLE;
KieRuntimeLogger runtimeLogger;
public LoggerAdaptor(KNOWLEDGE_LOGGER_TYPE loggerType) {
setLoggerType(loggerType);
}
public KNOWLEDGE_LOGGER_TYPE getLoggerType() {
return loggerType;
}
protected void setLoggerType(KNOWLEDGE_LOGGER_TYPE loggerType) {
this.loggerType = loggerType;
}
public int getInterval() {
return interval;
}
protected void setInterval(int interval) {
this.interval = interval;
}
public String getFile() {
return file;
}
protected void setFile(String file) {
this.file = file;
}
protected void setRuntimeLogger(KieRuntimeLogger runtimeLogger) {
this.runtimeLogger = runtimeLogger;
}
public KieRuntimeLogger getRuntimeLogger() {
return runtimeLogger;
}
public void close() {
if (runtimeLogger != null) {
runtimeLogger.close();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy