/* * 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.grp; 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 = "tFIO", propOrder = { "surname", "first", "patronymic" }) public class TFIO { @XmlElement(name = "Surname", required = true) protected String surname; @XmlElement(name = "First", required = true) protected String first; @XmlElement(name = "Patronymic") protected String patronymic; /** * Gets the value of the surname property. * * @return * possible object is * {@link String } * */ public String getSurname() { return surname; } /** * Sets the value of the surname property. * * @param value * allowed object is * {@link String } * */ public void setSurname(String value) { this.surname = value; } /** * Gets the value of the first property. * * @return * possible object is * {@link String } * */ public String getFirst() { return first; } /** * Sets the value of the first property. * * @param value * allowed object is * {@link String } * */ public void setFirst(String value) { this.first = value; } /** * Gets the value of the patronymic property. * * @return * possible object is * {@link String } * */ public String getPatronymic() { return patronymic; } /** * Sets the value of the patronymic property. * * @param value * allowed object is * {@link String } * */ public void setPatronymic(String value) { this.patronymic = value; } }