Manager.java |
/*************************************** * * * JBoss: The OpenSource J2EE WebOS * * * * Distributable under LGPL license. * * See terms of license at gnu.org. * * * ***************************************/ package org.jboss.jmx.adaptor.snmp.config.manager; /** * Simple POJO class to model XML data * * @author <a href="mailto:dimitris@jboss.org">Dimitris Andreadis</a> * * @version $Revision: 1.1.2.1 $ */ public class Manager { // Private Data -------------------------------------------------- private String address; private int port; private String localAddress; private int localPort; private int version; // Constructors ------------------------------------------------- /** * Default CTOR */ public Manager() { // empty } // Accessors/Modifiers ------------------------------------------- /** * Method getAddress returns the value of field 'address'. * * @return the value of field 'address'. */ public String getAddress() { return address; } /** * Method getLocalAddress returns the value of field * 'localAddress'. * * @return the value of field 'localAddress'. */ public String getLocalAddress() { return localAddress; } /** * Method getLocalPort returns the value of field 'localPort'. * * @return the value of field 'localPort'. */ public int getLocalPort() { return localPort; } /** * Method getPort returns the value of field 'port'. * * @return the value of field 'port'. */ public int getPort() { return port; } /** * Method getVersion returns the value of field 'version'. * * @return the value of field 'version'. */ public int getVersion() { return version; } /** * Method setAddress sets the value of field 'address'. * * @param address the value of field 'address'. */ public void setAddress(String address) { this.address = address; } /** * Method setLocalAddress sets the value of field * 'localAddress'. * * @param localAddress the value of field 'localAddress'. */ public void setLocalAddress(String localAddress) { this.localAddress = localAddress; } /** * Method setLocalPort sets the value of field 'localPort'. * * @param localPort the value of field 'localPort'. */ public void setLocalPort(int localPort) { this.localPort = localPort; } /** * Method setPort sets the value of field 'port'. * * @param port the value of field 'port'. */ public void setPort(int port) { this.port = port; } /** * Method setVersion sets the value of field 'version'. * * @param version the value of field 'version'. */ public void setVersion(int version) { this.version = version; } // Object overrides ---------------------------------------------- public String toString() { StringBuffer sbuf = new StringBuffer(256); sbuf.append('[') .append("address=").append(address) .append(", port=").append(port) .append(", localAddress=").append(localAddress) .append(", localPort=").append(localPort) .append(", version=").append(version) .append(']'); return sbuf.toString(); } }
Manager.java |