package com.coverity.ws.v9;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for fieldChangeDataObj complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="fieldChangeDataObj">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="fieldName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="newValue" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="oldValue" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "fieldChangeDataObj", propOrder = {
"fieldName",
"newValue",
"oldValue"
})
public class FieldChangeDataObj {
protected String fieldName;
protected String newValue;
protected String oldValue;
/**
* Gets the value of the fieldName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFieldName() {
return fieldName;
}
/**
* Sets the value of the fieldName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFieldName(String value) {
this.fieldName = value;
}
/**
* Gets the value of the newValue property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNewValue() {
return newValue;
}
/**
* Sets the value of the newValue property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNewValue(String value) {
this.newValue = value;
}
/**
* Gets the value of the oldValue property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOldValue() {
return oldValue;
}
/**
* Sets the value of the oldValue property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOldValue(String value) {
this.oldValue = value;
}
}