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

io.atlasmap.v2.Validation Maven / Gradle / Ivy

There is a newer version: 2.5.2
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2018.02.13 at 05:24:46 PM EST 
//


package io.atlasmap.v2;

import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import com.fasterxml.jackson.annotation.JsonRootName;


/**
 * 

Java class for Validation complex type. * *

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

 * <complexType name="Validation">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="message" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="scope" use="required" type="{http://atlasmap.io/v2}ValidationScope" />
 *       <attribute name="status" use="required" type="{http://atlasmap.io/v2}ValidationStatus" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Validation", propOrder = { "message" }) @XmlRootElement(name = "Validation") @JsonRootName("Validation") public class Validation implements Serializable { private final static long serialVersionUID = 1L; protected String message; @XmlAttribute(name = "id") protected String id; @XmlAttribute(name = "scope", required = true) protected ValidationScope scope; @XmlAttribute(name = "status", required = true) protected ValidationStatus status; /** * Gets the value of the message property. * * @return * possible object is * {@link String } * */ public String getMessage() { return message; } /** * Sets the value of the message property. * * @param value * allowed object is * {@link String } * */ public void setMessage(String value) { this.message = value; } /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } /** * Gets the value of the scope property. * * @return * possible object is * {@link ValidationScope } * */ public ValidationScope getScope() { return scope; } /** * Sets the value of the scope property. * * @param value * allowed object is * {@link ValidationScope } * */ public void setScope(ValidationScope value) { this.scope = value; } /** * Gets the value of the status property. * * @return * possible object is * {@link ValidationStatus } * */ public ValidationStatus getStatus() { return status; } /** * Sets the value of the status property. * * @param value * allowed object is * {@link ValidationStatus } * */ public void setStatus(ValidationStatus value) { this.status = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy