// // This file is part of the OpenNMS(R) Application. // // OpenNMS(R) is Copyright (C) 2005 The OpenNMS Group, Inc. All rights reserved. // OpenNMS(R) is a derivative work, containing both original code, included code and modified // code that was published under the GNU General Public License. Copyrights for modified // and included code are below. // // OpenNMS(R) is a registered trademark of The OpenNMS Group, Inc. // // Original code base Copyright (C) 1999-2001 Oculan Corp. All rights reserved. // // This program 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 2 of the License, or // (at your option) any later version. // // This program 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 this program; if not, write to the Free Software // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // // For more information contact: // OpenNMS Licensing <license@opennms.org> // http://www.opennms.org/ // http://www.opennms.com/ // // Tab Size = 8 package org.infosec.ismp.snmp; import java.net.InetAddress; /** * @author (various previous authors not documented) * @author <a href="mailto:david@opennms.org">David Hustace</a> * */ public class SnmpAgentConfig extends SnmpConfiguration { private InetAddress m_address; private InetAddress m_proxyFor; private String m_nodeid; private String m_type; private String m_brand;//设备品牌 public SnmpAgentConfig() { this(null); } public SnmpAgentConfig(InetAddress agentAddress) { this(agentAddress, SnmpConfiguration.DEFAULTS); } public SnmpAgentConfig(InetAddress agentAddress, SnmpConfiguration defaults) { super(defaults); m_address = agentAddress; } public String toString() { StringBuffer buff = new StringBuffer("AgentConfig["); buff.append("nodeid: " + getNodeid()); buff.append(", type: " + getType()); buff.append(", brand: " + getBrand()); buff.append("Address: " + getAddress()); buff.append(", ProxyForAddress: " + getProxyFor()); buff.append(", Port: " + getPort()); buff.append(", Community: " + getReadCommunity()); buff.append(", Timeout: " + getTimeout()); buff.append(", Retries: " + getRetries()); buff.append(", MaxVarsPerPdu: " + getMaxVarsPerPdu()); buff.append(", MaxRepititions: " + getMaxRepetitions()); buff.append(", Max request size: " + getMaxRequestSize()); buff.append(", Version: " + versionToString(getVersion())); if (getVersion() == VERSION3) { buff.append(", Security level: " + getSecurityLevel()); buff.append(", Security name: " + getSecurityName()); buff.append(", auth-passphrase: " + getAuthPassPhrase()); buff.append(", auth-protocol: " + getAuthProtocol()); buff.append(", priv-passprhase: " + getPrivPassPhrase()); buff.append(", priv-protocol: " + getPrivProtocol()); } buff.append("]"); return buff.toString(); } public String getNodeid() { return m_nodeid; } public String getType() { return m_type; } public void setNodeid(String nodeid) { m_nodeid = nodeid; } public void setType(String type) { m_type = type; } public InetAddress getAddress() { return m_address; } public void setAddress(InetAddress address) { m_address = address; } public InetAddress getProxyFor() { return m_proxyFor; } public void setProxyFor(InetAddress address) { m_proxyFor = address; } public String getBrand() { return m_brand; } public void setBrand(String brand) { m_brand = brand; } }