io.atlasmap.v2.Audit Maven / Gradle / Ivy
//
// 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.05.02 at 12:29:58 PM EDT
//
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.XmlType;
/**
* Java class for Audit complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Audit">
* <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="docId" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="path" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="value" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="status" use="required" type="{http://atlasmap.io/v2}AuditStatus" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Audit", propOrder = {
"message"
})
public class Audit
implements Serializable
{
private final static long serialVersionUID = 1L;
protected String message;
@XmlAttribute(name = "docId")
protected String docId;
@XmlAttribute(name = "path")
protected String path;
@XmlAttribute(name = "value")
protected String value;
@XmlAttribute(name = "status", required = true)
protected AuditStatus 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 docId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDocId() {
return docId;
}
/**
* Sets the value of the docId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDocId(String value) {
this.docId = value;
}
/**
* Gets the value of the path property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPath() {
return path;
}
/**
* Sets the value of the path property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPath(String value) {
this.path = value;
}
/**
* Gets the value of the value property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getValue() {
return value;
}
/**
* Sets the value of the value property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setValue(String value) {
this.value = value;
}
/**
* Gets the value of the status property.
*
* @return
* possible object is
* {@link AuditStatus }
*
*/
public AuditStatus getStatus() {
return status;
}
/**
* Sets the value of the status property.
*
* @param value
* allowed object is
* {@link AuditStatus }
*
*/
public void setStatus(AuditStatus value) {
this.status = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy