/******************************************************************************* * This file is part of OpenNMS(R). * * Copyright (C) 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/ *******************************************************************************/ /* * 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.xml.event; //---------------------------------/ //- Imported classes and packages -/ //---------------------------------/ import java.io.Serializable; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlValue; import org.apache.commons.lang.builder.ToStringBuilder; /** * parm value * * @version $Revision$ $Date$ */ @XmlRootElement(name="value") @XmlAccessorType(XmlAccessType.FIELD) //@ValidateUsing("event.xsd") public class Value implements Serializable { private static final long serialVersionUID = 6267247580169994541L; //--------------------------/ //- Class/Member Variables -/ //--------------------------/ /** * internal content storage */ @XmlValue private java.lang.String _content = ""; /** * Field _type. */ @XmlAttribute(name="type") private java.lang.String _type = "string"; /** * Field _encoding. */ @XmlAttribute(name="encoding") private java.lang.String _encoding = "text"; //----------------/ //- Constructors -/ //----------------/ public Value() { super(); setContent(""); setType("string"); setEncoding("text"); } //-----------/ //- Methods -/ //-----------/ public Value(final String value) { this(); setContent(value); } /** * Returns the value of field 'content'. The field 'content' * has the following description: internal content storage * * @return the value of field 'Content'. */ public java.lang.String getContent( ) { return this._content; } /** * Returns the value of field 'encoding'. * * @return the value of field 'Encoding'. */ public java.lang.String getEncoding( ) { return this._encoding; } /** * Returns the value of field 'type'. * * @return the value of field 'Type'. */ public java.lang.String getType( ) { return this._type; } /** * Sets the value of field 'content'. The field 'content' has * the following description: internal content storage * * @param content the value of field 'content'. */ public void setContent( final java.lang.String content) { this._content = content; } /** * Sets the value of field 'encoding'. * * @param encoding the value of field 'encoding'. */ public void setEncoding( final java.lang.String encoding) { this._encoding = encoding; } /** * Sets the value of field 'type'. * * @param type the value of field 'type'. */ public void setType( final java.lang.String type) { this._type = type; } public String toString() { return new ToStringBuilder(this) .append("content", _content) .append("type", _type) .append("encoding", _encoding) .toString(); } }