/******************************************************************************* * This file is part of OpenNMS(R). * * Copyright (C) 2009-2011 The OpenNMS Group, Inc. * OpenNMS(R) is Copyright (C) 1999-2011 The OpenNMS Group, Inc. * * OpenNMS(R) is a registered trademark of The OpenNMS Group, Inc. * * OpenNMS(R) is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published * by the Free Software Foundation, either version 3 of the License, * or (at your option) any later version. * * OpenNMS(R) 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with OpenNMS(R). If not, see: * http://www.gnu.org/licenses/ * * For more information contact: * OpenNMS(R) Licensing <license@opennms.org> * http://www.opennms.org/ * http://www.opennms.com/ *******************************************************************************/ package org.opennms.protocols.ami; import java.net.InetAddress; /** * <p>AmiAgentConfig class.</p> * * @author ranger * @version $Id: $ */ public class AmiAgentConfig { /** Constant <code>DEFAULT_TIMEOUT=3000</code> */ public static final int DEFAULT_TIMEOUT = 3000; /** Constant <code>DEFAULT_RETRIES=1</code> */ public static final int DEFAULT_RETRIES = 1; /** Constant <code>DEFAULT_PASSWORD=""</code> */ public static final String DEFAULT_PASSWORD = ""; /** Constant <code>DEFAULT_USERNAME="opennms"</code> */ public static final String DEFAULT_USERNAME="opennms"; /** Constant <code>DEFAULT_PORT=5038</code> */ public static final int DEFAULT_PORT = 5038; /** Constant <code>DEFAULT_TLS_PORT=5039</code> */ public static final int DEFAULT_TLS_PORT = 5039; /** Constant <code>DEFAULT_USE_TLS=false</code> */ public static final boolean DEFAULT_USE_TLS = false; private InetAddress m_address; private int m_timeout; private int m_retries; private String m_username; private String m_password; private int m_port; private boolean m_useTls; String user = ""; String pass = ""; String matchType = "all"; /** * <p>Constructor for AmiAgentConfig.</p> */ public AmiAgentConfig() { setDefaults(); } /** * <p>Constructor for AmiAgentConfig.</p> * * @param agentAddress a {@link java.net.InetAddress} object. */ public AmiAgentConfig(InetAddress agentAddress) { m_address = agentAddress; setDefaults(); } private void setDefaults() { m_timeout = DEFAULT_TIMEOUT; m_retries = DEFAULT_RETRIES; m_port = DEFAULT_PORT; m_useTls = DEFAULT_USE_TLS; m_username = DEFAULT_USERNAME; } /** * <p>toString</p> * * @return a {@link java.lang.String} object. */ public String toString() { StringBuffer buff = new StringBuffer("AgentConfig["); buff.append("Address: "+m_address); buff.append(", Port: " +m_port); buff.append(", TLS: "+m_useTls); buff.append(", Username: "+String.valueOf(m_username)); //use valueOf to handle null values of m_username buff.append(", Password: "+String.valueOf(m_password)); //use valueOf to handle null values of m_password buff.append(", Timeout: "+m_timeout); buff.append(", Retries: "+m_retries); buff.append("]"); return buff.toString(); } /** * <p>getAddress</p> * * @return a {@link java.net.InetAddress} object. */ public InetAddress getAddress() { return m_address; } /** * <p>setAddress</p> * * @param address a {@link java.net.InetAddress} object. */ public void setAddress(InetAddress address) { m_address = address; } /** * <p>getTimeout</p> * * @return a int. */ public int getTimeout() { return m_timeout; } /** * <p>setTimeout</p> * * @param timeout a int. */ public void setTimeout(int timeout) { m_timeout = timeout; } /** * <p>getRetries</p> * * @return a int. */ public int getRetries() { return m_retries; } /** * <p>setRetries</p> * * @param retries a int. */ public void setRetries(int retries) { m_retries = retries; } /** * <p>setPassword</p> * * @param password a {@link java.lang.String} object. */ public void setPassword(String password) { m_password = password; } /** * <p>getPassword</p> * * @return a {@link java.lang.String} object. */ public String getPassword() { return m_password; } /** * <p>getUsername</p> * * @return a {@link java.lang.String} object. */ public String getUsername() { return m_username; } /** * <p>setUsername</p> * * @param username a {@link java.lang.String} object. */ public void setUsername(String username) { m_username = username; } /** * <p>getPort</p> * * @return a int. */ public int getPort() { return m_port; } /** * <p>setPort</p> * * @param port a int. */ public void setPort(int port) { m_port = port; } /** * <p>getUseTls</p> * * @return a boolean. */ public boolean getUseTls() { return m_useTls; } /** * <p>setUseTls</p> * * @param useTls a boolean. */ public void setUseTls(boolean useTls) { m_useTls = useTls; } }