All Downloads are FREE. Search and download functionalities are using the official Maven repository.

eu.europa.esig.dss.simplecertificatereport.jaxb.XmlValidationPolicy Maven / Gradle / Ivy

//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.2 
// See https://eclipse-ee4j.github.io/jaxb-ri 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2024.12.24 at 03:19:25 PM CET 
//


package eu.europa.esig.dss.simplecertificatereport.jaxb;

import java.io.Serializable;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;


/**
 * 

Java class for ValidationPolicy complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="ValidationPolicy">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="PolicyName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="PolicyDescription" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ValidationPolicy", propOrder = { "policyName", "policyDescription" }) public class XmlValidationPolicy implements Serializable { private final static long serialVersionUID = 1L; @XmlElement(name = "PolicyName") protected String policyName; @XmlElement(name = "PolicyDescription") 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; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy