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

org.finra.herd.model.api.xml.JdbcStatementStatus Maven / Gradle / Ivy

Go to download

This project contains the model API classes. This contains the herd XSD and generates Java POJO's from them. These classes are used for incoming and outgoing calls into the system (e.g. via REST).

There is a newer version: 0.160.0
Show newest version

package org.finra.herd.model.api.xml;

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


/**
 * 

Java class for jdbcStatementStatus. * *

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

*

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy