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

org.productivity.java.syslog4j.impl.net.tcp.ssl.pool.PooledSSLTCPNetSyslogConfig Maven / Gradle / Ivy

Go to download

Syslog4j provides client and server implementations of the BSD Syslog protocol (RFC 3164) and the draft "structured syslog" protocol (RFC Draft).

The newest version!
package org.productivity.java.syslog4j.impl.net.tcp.ssl.pool;

import org.productivity.java.syslog4j.impl.net.tcp.pool.PooledTCPNetSyslogConfig;
import org.productivity.java.syslog4j.impl.net.tcp.ssl.SSLTCPNetSyslog;
import org.productivity.java.syslog4j.impl.net.tcp.ssl.SSLTCPNetSyslogConfigIF;
import org.productivity.java.syslog4j.impl.net.tcp.ssl.SSLTCPNetSyslogWriter;

/**
* PooledSSLTCPNetSyslogConfig is an extension of PooledTCPNetSyslogConfig
* which provides configuration support for the Apache Commons Pool.
* 
* 

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: PooledSSLTCPNetSyslogConfig.java,v 1.2 2009/03/29 17:38:58 cvs Exp $ */ public class PooledSSLTCPNetSyslogConfig extends PooledTCPNetSyslogConfig implements SSLTCPNetSyslogConfigIF { private static final long serialVersionUID = 2092268298395023976L; protected String keyStore = null; protected String keyStorePassword = null; protected String trustStore = null; protected String trustStorePassword = null; public PooledSSLTCPNetSyslogConfig() { super(); } public PooledSSLTCPNetSyslogConfig(int facility, String host, int port) { super(facility, host, port); } public PooledSSLTCPNetSyslogConfig(int facility, String host) { super(facility, host); } public PooledSSLTCPNetSyslogConfig(int facility) { super(facility); } public PooledSSLTCPNetSyslogConfig(String host, int port) { super(host, port); } public PooledSSLTCPNetSyslogConfig(String host) { super(host); } public String getKeyStore() { return this.keyStore; } public void setKeyStore(String keyStore) { this.keyStore = keyStore; } public String getKeyStorePassword() { return this.keyStorePassword; } public void setKeyStorePassword(String keyStorePassword) { this.keyStorePassword = keyStorePassword; } public String getTrustStore() { return this.trustStore; } public void setTrustStore(String trustStore) { this.trustStore = trustStore; } public String getTrustStorePassword() { return this.trustStorePassword; } public void setTrustStorePassword(String trustStorePassword) { this.trustStorePassword = trustStorePassword; } public Class getSyslogClass() { return SSLTCPNetSyslog.class; } public Class getSyslogWriterClass() { return SSLTCPNetSyslogWriter.class; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy