/* * 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.tower.mvd.response.addpayment; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { }) @XmlRootElement(name = "\u041f\u043e\u0434\u0440\u0430\u0437\u0434\u0435\u043b\u0435\u043d\u0438\u0435") public class Подразделение { @XmlElement(name = "\u0420\u0435\u0433\u0438\u043e\u043d", required = true) protected String регион; @XmlElement(name = "\u041d\u0430\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u043d\u0438\u0435", required = true) protected String наименование; /** * Gets the value of the регион property. * * @return * possible object is * {@link String } * */ public String getРегион() { return регион; } /** * Sets the value of the регион property. * * @param value * allowed object is * {@link String } * */ public void setРегион(String value) { this.регион = value; } /** * Gets the value of the наименование property. * * @return * possible object is * {@link String } * */ public String getНаименование() { return наименование; } /** * Sets the value of the наименование property. * * @param value * allowed object is * {@link String } * */ public void setНаименование(String value) { this.наименование = value; } }