// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2017.01.19 at 08:28:00 AM CET // package eu.europa.esig.dss.jaxb.simplereport; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="PolicyName" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="PolicyDescription" type="{http://www.w3.org/2001/XMLSchema}string"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "policyName", "policyDescription" }) public class XmlPolicy { @XmlElement(name = "PolicyName", required = true) protected String policyName; @XmlElement(name = "PolicyDescription", required = true) protected String policyDescription; /** * Gets the value of the policyName property. * * @return * possible object is * {@link String } * */ public String getPolicyName() { return policyName; } /** * Sets the value of the policyName property. * * @param value * allowed object is * {@link String } * */ public void setPolicyName(String value) { this.policyName = value; } /** * Gets the value of the policyDescription property. * * @return * possible object is * {@link String } * */ public String getPolicyDescription() { return policyDescription; } /** * Sets the value of the policyDescription property. * * @param value * allowed object is * {@link String } * */ public void setPolicyDescription(String value) { this.policyDescription = value; } }