com.alachisoft.ncache.client.internal.util.Logs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ncache-professional-client Show documentation
Show all versions of ncache-professional-client Show documentation
NCache Professional client for java.
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.alachisoft.ncache.client.internal.util;
import Alachisoft.NCache.Common.Logger.ILogger;
/**
* @author Huma
*/
public class Logs {
private boolean _logsEnabled;
private boolean _errorLogsEnabled;
private boolean _detailedLogsEnabled;
private ILogger _ncacheLog;
public ILogger getNCacheLog() {
return _ncacheLog;
}
public void setNCacheLog(ILogger value) {
_ncacheLog = value;
}
public boolean getIsErrorLogsEnabled() {
return _errorLogsEnabled;
}
public void setIsErrorLogsEnabled(boolean value) {
_errorLogsEnabled = value;
}
public boolean getIsDetailedLogsEnabled() {
return _detailedLogsEnabled;
}
public void setIsDetailedLogsEnabled(boolean value) {
_detailedLogsEnabled = value;
}
}