/* * 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.socit.pfr.service.data; 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 = "Property", propOrder = { "propertyName", "propertyValue" }) public class Property { @XmlElement(name = "PropertyName", required = true) protected String propertyName; @XmlElement(name = "PropertyValue", required = true) protected String propertyValue; /** * Gets the value of the propertyName property. * * @return * possible object is * {@link String } * */ public String getPropertyName() { return propertyName; } /** * Sets the value of the propertyName property. * * @param value * allowed object is * {@link String } * */ public void setPropertyName(String value) { this.propertyName = value; } /** * Gets the value of the propertyValue property. * * @return * possible object is * {@link String } * */ public String getPropertyValue() { return propertyValue; } /** * Sets the value of the propertyValue property. * * @param value * allowed object is * {@link String } * */ public void setPropertyValue(String value) { this.propertyValue = value; } }