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

no.difi.vefa.peppol.evidence.jaxb.receipt.ErrorCodeStatus Maven / Gradle / Ivy

Go to download

Implementation of ETSI REM evidence according to ETSI TS 102 640-2 with some adjustments.

There is a newer version: 1.1.4
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2019.09.16 at 12:56:37 PM UTC 
//


package no.difi.vefa.peppol.evidence.jaxb.receipt;

import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for ErrorCodeStatus. * *

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

*

 * <simpleType name="ErrorCodeStatus">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="SUCCESS"/>
 *     <enumeration value="REJECTED"/>
 *     <enumeration value="INVALID_SIGNATURE"/>
 *     <enumeration value="UNKNOWN_RECEIVER"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "ErrorCodeStatus") @XmlEnum public enum ErrorCodeStatus { SUCCESS, REJECTED, INVALID_SIGNATURE, UNKNOWN_RECEIVER; public String value() { return name(); } public static ErrorCodeStatus fromValue(String v) { return valueOf(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy