/* * This class was automatically generated with * <a href="http://www.castor.org">Castor 1.1.2.1</a>, using an XML * Schema. * $Id$ */ package org.opennms.netmgt.config.nsclient; //---------------------------------/ //- Imported classes and packages -/ //---------------------------------/ import org.exolab.castor.xml.Marshaller; import org.exolab.castor.xml.Unmarshaller; /** * IP Address Range * * @version $Revision$ $Date$ */ @SuppressWarnings("all") public class Range implements java.io.Serializable { //--------------------------/ //- Class/Member Variables -/ //--------------------------/ /** * Starting IP address of the range. */ private java.lang.String _begin; /** * Ending IP address of the range. */ private java.lang.String _end; //----------------/ //- Constructors -/ //----------------/ public Range() { super(); } //-----------/ //- Methods -/ //-----------/ /** * Overrides the java.lang.Object.equals method. * * @param obj * @return true if the objects are equal. */ @Override() public boolean equals( final java.lang.Object obj) { if ( this == obj ) return true; if (obj instanceof Range) { Range temp = (Range)obj; if (this._begin != null) { if (temp._begin == null) return false; else if (!(this._begin.equals(temp._begin))) return false; } else if (temp._begin != null) return false; if (this._end != null) { if (temp._end == null) return false; else if (!(this._end.equals(temp._end))) return false; } else if (temp._end != null) return false; return true; } return false; } /** * Returns the value of field 'begin'. The field 'begin' has * the following description: Starting IP address of the range. * * @return the value of field 'Begin'. */ public java.lang.String getBegin( ) { return this._begin; } /** * Returns the value of field 'end'. The field 'end' has the * following description: Ending IP address of the range. * * @return the value of field 'End'. */ public java.lang.String getEnd( ) { return this._end; } /** * Overrides the java.lang.Object.hashCode method. * <p> * The following steps came from <b>Effective Java Programming * Language Guide</b> by Joshua Bloch, Chapter 3 * * @return a hash code value for the object. */ public int hashCode( ) { int result = 17; long tmp; if (_begin != null) { result = 37 * result + _begin.hashCode(); } if (_end != null) { result = 37 * result + _end.hashCode(); } return result; } /** * Method isValid. * * @return true if this object is valid according to the schema */ public boolean isValid( ) { try { validate(); } catch (org.exolab.castor.xml.ValidationException vex) { return false; } return true; } /** * * * @param out * @throws org.exolab.castor.xml.MarshalException if object is * null or if any SAXException is thrown during marshaling * @throws org.exolab.castor.xml.ValidationException if this * object is an invalid instance according to the schema */ public void marshal( final java.io.Writer out) throws org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException { Marshaller.marshal(this, out); } /** * * * @param handler * @throws java.io.IOException if an IOException occurs during * marshaling * @throws org.exolab.castor.xml.ValidationException if this * object is an invalid instance according to the schema * @throws org.exolab.castor.xml.MarshalException if object is * null or if any SAXException is thrown during marshaling */ public void marshal( final org.xml.sax.ContentHandler handler) throws java.io.IOException, org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException { Marshaller.marshal(this, handler); } /** * Sets the value of field 'begin'. The field 'begin' has the * following description: Starting IP address of the range. * * @param begin the value of field 'begin'. */ public void setBegin( final java.lang.String begin) { this._begin = begin; } /** * Sets the value of field 'end'. The field 'end' has the * following description: Ending IP address of the range. * * @param end the value of field 'end'. */ public void setEnd( final java.lang.String end) { this._end = end; } /** * Method unmarshal. * * @param reader * @throws org.exolab.castor.xml.MarshalException if object is * null or if any SAXException is thrown during marshaling * @throws org.exolab.castor.xml.ValidationException if this * object is an invalid instance according to the schema * @return the unmarshaled * org.opennms.netmgt.config.nsclient.Range */ public static org.opennms.netmgt.config.nsclient.Range unmarshal( final java.io.Reader reader) throws org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException { return (org.opennms.netmgt.config.nsclient.Range) Unmarshaller.unmarshal(org.opennms.netmgt.config.nsclient.Range.class, reader); } /** * * * @throws org.exolab.castor.xml.ValidationException if this * object is an invalid instance according to the schema */ public void validate( ) throws org.exolab.castor.xml.ValidationException { org.exolab.castor.xml.Validator validator = new org.exolab.castor.xml.Validator(); validator.validate(this); } }