com.nesscomputing.syslog4j.impl.net.AbstractNetSyslogConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ness-syslog4j Show documentation
Show all versions of ness-syslog4j Show documentation
Syslog4j provides client and server implementations of the BSD Syslog protocol (RFC 3164) and the structured syslog" protocol (RFC5424).
/**
*
* (C) Copyright 2008-2011 syslog4j.org
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Lesser General Public License
* (LGPL) version 2.1 which accompanies this distribution, and is available at
* http://www.gnu.org/licenses/lgpl-2.1.html
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*/
package com.nesscomputing.syslog4j.impl.net;
import static com.nesscomputing.syslog4j.SyslogConstants.CACHE_HOST_ADDRESS_DEFAULT;
import static com.nesscomputing.syslog4j.SyslogConstants.MAX_QUEUE_SIZE_DEFAULT;
import static com.nesscomputing.syslog4j.SyslogConstants.SYSLOG_HOST_DEFAULT;
import static com.nesscomputing.syslog4j.SyslogConstants.SYSLOG_PORT_DEFAULT;
import com.nesscomputing.syslog4j.SyslogFacility;
import com.nesscomputing.syslog4j.impl.AbstractSyslogConfig;
/**
* AbstractNetSyslogConfig is an abstract extension of AbstractSyslogConfig
* that provides configuration support for network-based syslog clients.
*
* Syslog4j is licensed under the Lesser GNU Public License v2.1. A copy
* of the LGPL license is available in the META-INF folder in all
* distributions of Syslog4j and in the base directory of the "doc" ZIP.
*
* @author <[email protected]>
* @version $Id: AbstractNetSyslogConfig.java,v 1.12 2010/10/25 03:50:25 cvs Exp $
*/
public abstract class AbstractNetSyslogConfig extends AbstractSyslogConfig implements AbstractNetSyslogConfigIF {
protected String host = SYSLOG_HOST_DEFAULT;
protected int port = SYSLOG_PORT_DEFAULT;
protected boolean cacheHostAddress = CACHE_HOST_ADDRESS_DEFAULT;
protected int maxQueueSize = MAX_QUEUE_SIZE_DEFAULT;
public AbstractNetSyslogConfig() {
//
}
public AbstractNetSyslogConfig(SyslogFacility facility) {
this.facility = facility;
}
public AbstractNetSyslogConfig(SyslogFacility facility, String host) {
this.facility = facility;
this.host = host;
}
public AbstractNetSyslogConfig(String host) {
this.host = host;
}
public AbstractNetSyslogConfig(SyslogFacility facility, String host, int port) {
this.facility = facility;
this.host = host;
this.port = port;
}
public AbstractNetSyslogConfig(String host, int port) {
this.host = host;
this.port = port;
}
public boolean isCacheHostAddress() {
return this.cacheHostAddress;
}
public void setCacheHostAddress(boolean cacheHostAddress) {
this.cacheHostAddress = cacheHostAddress;
}
public String getHost() {
return this.host;
}
public void setHost(String host) {
this.host = host;
}
public int getPort() {
return this.port;
}
public void setPort(int port) {
this.port = port;
}
public int getMaxQueueSize() {
return maxQueueSize;
}
public void setMaxQueueSize(int maxQueueSize) {
this.maxQueueSize = maxQueueSize;
}
}