All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.graylog2.syslog4j.server.impl.net.AbstractNetSyslogServerConfig Maven / Gradle / Ivy

package org.graylog2.syslog4j.server.impl.net;

import org.graylog2.syslog4j.server.impl.AbstractSyslogServerConfig;

/**
 * AbstractNetSyslogServerConfig provides a base abstract implementation of the AbstractSyslogServerConfig
 * configuration interface.
 * 

*

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: AbstractNetSyslogServerConfig.java,v 1.4 2008/11/07 15:15:41 cvs Exp $ */ public abstract class AbstractNetSyslogServerConfig extends AbstractSyslogServerConfig { private static final long serialVersionUID = -3363374941938350263L; protected String host = null; protected int port = SYSLOG_PORT_DEFAULT; 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy