org.openehealth.ipf.commons.xml.svrl.SchematronOutput Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ipf-commons-xml Show documentation
Show all versions of ipf-commons-xml Show documentation
Generic IPF support for XML validation
The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2015.05.01 at 10:44:03 PM CEST
//
package org.openehealth.ipf.commons.xml.svrl;
import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlElements;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.CollapsedStringAdapter;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{http://purl.oclc.org/dsdl/svrl}text" maxOccurs="unbounded" minOccurs="0"/>
* <element ref="{http://purl.oclc.org/dsdl/svrl}ns-prefix-in-attribute-values" maxOccurs="unbounded" minOccurs="0"/>
* <sequence maxOccurs="unbounded">
* <element ref="{http://purl.oclc.org/dsdl/svrl}active-pattern"/>
* <sequence maxOccurs="unbounded">
* <element ref="{http://purl.oclc.org/dsdl/svrl}fired-rule"/>
* <choice maxOccurs="unbounded" minOccurs="0">
* <element ref="{http://purl.oclc.org/dsdl/svrl}failed-assert"/>
* <element ref="{http://purl.oclc.org/dsdl/svrl}successful-report"/>
* </choice>
* </sequence>
* </sequence>
* </sequence>
* <attribute name="title" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
* <attribute name="phase" type="{http://www.w3.org/2001/XMLSchema}NMTOKEN" />
* <attribute name="schemaVersion" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"text",
"nsPrefixInAttributeValues",
"activePatternAndFiredRuleAndFailedAssert"
})
@XmlRootElement(name = "schematron-output")
public class SchematronOutput {
protected List text;
@XmlElement(name = "ns-prefix-in-attribute-values")
protected List nsPrefixInAttributeValues;
@XmlElements({
@XmlElement(name = "active-pattern", required = true, type = ActivePattern.class),
@XmlElement(name = "fired-rule", required = true, type = FiredRule.class),
@XmlElement(name = "failed-assert", required = true, type = FailedAssert.class),
@XmlElement(name = "successful-report", required = true, type = SuccessfulReport.class)
})
protected List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy