/******************************************************************************* * This file is part of OpenNMS(R). * * Copyright (C) 2006-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.web.element; import java.util.HashMap; import java.util.Map; import org.opennms.netmgt.linkd.DbAtInterfaceEntry; /** * <p>AtInterface class.</p> * * @author <a href="mailto:antonio@opennms.it">Antonio Russo</a> */ public class AtInterface { private final int m_nodeId; private final int m_sourcenodeid; private final int m_ifindex; private final String m_ipaddr; private final String m_physaddr; private final String m_lastPollTime; private final char m_status; private static final Map<Character, String> statusMap = new HashMap<Character, String>(); static { statusMap.put( DbAtInterfaceEntry.STATUS_ACTIVE, "Active" ); statusMap.put( DbAtInterfaceEntry.STATUS_UNKNOWN, "Unknown" ); statusMap.put( DbAtInterfaceEntry.STATUS_DELETED, "Deleted" ); statusMap.put( DbAtInterfaceEntry.STATUS_NOT_POLLED, "Not Active" ); } /* package-protected so only the NetworkElementFactory can instantiate */ AtInterface( int nodeId, int sourcenodeid, int ifindex, String ipaddr, String physaddr, String lastPollTime, char status) { m_nodeId = nodeId; m_sourcenodeid = sourcenodeid; m_ifindex = ifindex; m_ipaddr = ipaddr; m_physaddr = physaddr; m_lastPollTime = lastPollTime; m_status = status; } /** * <p>toString</p> * * @return a {@link java.lang.String} object. */ public String toString() { StringBuffer str = new StringBuffer("Node Id = " + m_nodeId + "\n" ); str.append("Node Source = " + m_sourcenodeid + "\n" ); str.append("At Last Poll Time = " + m_lastPollTime + "\n" ); str.append("Dp name = " + m_physaddr + "\n" ); str.append("Node At Status= " + m_status + "\n" ); return str.toString(); } /** * <p>get_ifindex</p> * * @return a int. */ public int get_ifindex() { return m_ifindex; } /** * <p>get_ipaddr</p> * * @return a {@link java.lang.String} object. */ public String get_ipaddr() { return m_ipaddr; } /** * <p>get_lastPollTime</p> * * @return a {@link java.lang.String} object. */ public String get_lastPollTime() { return m_lastPollTime; } /** * <p>get_nodeId</p> * * @return a int. */ public int get_nodeId() { return m_nodeId; } /** * <p>get_physaddr</p> * * @return a {@link java.lang.String} object. */ public String get_physaddr() { return m_physaddr; } /** * <p>get_sourcenodeid</p> * * @return a int. */ public int get_sourcenodeid() { return m_sourcenodeid; } /** * <p>get_status</p> * * @return a char. */ public char get_status() { return m_status; } }