/* * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * Copyright (c) 2013, MPL CodeInside http://codeinside.ru */ package ru.roskazna.xsd.common; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ContactInfoType", propOrder = { "kind", "value", "comment" }) public class ContactInfoType { @XmlElement(name = "Kind", required = true) protected String kind; @XmlElement(name = "Value", required = true) protected String value; @XmlElement(name = "Comment") protected String comment; /** * Gets the value of the kind property. * * @return * possible object is * {@link String } * */ public String getKind() { return kind; } /** * Sets the value of the kind property. * * @param value * allowed object is * {@link String } * */ public void setKind(String value) { this.kind = value; } /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } /** * Gets the value of the comment property. * * @return * possible object is * {@link String } * */ public String getComment() { return comment; } /** * Sets the value of the comment property. * * @param value * allowed object is * {@link String } * */ public void setComment(String value) { this.comment = value; } }