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

com.prowidesoftware.swift.model.mx.dic.Response10Code Maven / Gradle / Ivy

The newest version!

package com.prowidesoftware.swift.model.mx.dic;

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


/**
 * 

Java class for Response10Code. * *

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

{@code
 * 
 *   
 *     
 *     
 *     
 *     
 *     
 *     
 *   
 * 
 * }
* */ @XmlType(name = "Response10Code") @XmlEnum public enum Response10Code { /** * Request is still in progress. * */ INPS, /** * Service is under review. * */ UNRV, /** * Other type of processing result defined at private level. * */ OTHP, /** * Other type of processing result defined at national level. * */ OTHN, /** * Processing of the request fails for various reasons. Some further processing according to the type of requested service, the context of the process, and some additional precision about the failure notified in the ErrorCondition data element. * */ FAIL, /** * Processing OK. Information related to the result of the processing is contained in other parts of the response message. * */ SUCC; public String value() { return name(); } public static Response10Code fromValue(String v) { return valueOf(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy