![JAR search and dependency download from the Maven repository](/logo.png)
legstar.test.jaxb.cusdat.Transaction 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: 2015.01.05 at 05:42:50 PM CET
//
package legstar.test.jaxb.cusdat;
import java.math.BigDecimal;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for Transaction complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Transaction">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <choice>
* <element name="transactionDate">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <maxLength value="8"/>
* </restriction>
* </simpleType>
* </element>
* <element name="filler12" type="{http://jaxb.test.legstar/cusdat}Filler12"/>
* </choice>
* <element name="transactionAmount">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}decimal">
* <totalDigits value="15"/>
* <fractionDigits value="2"/>
* </restriction>
* </simpleType>
* </element>
* <element name="transactionComment">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <maxLength value="9"/>
* </restriction>
* </simpleType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Transaction", namespace = "http://jaxb.test.legstar/cusdat", propOrder = {
"transactionDate",
"filler12",
"transactionAmount",
"transactionComment"
})
public class Transaction {
@XmlElement(namespace = "http://jaxb.test.legstar/cusdat")
protected String transactionDate;
@XmlElement(namespace = "http://jaxb.test.legstar/cusdat")
protected Filler12 filler12;
@XmlElement(namespace = "http://jaxb.test.legstar/cusdat", required = true)
protected BigDecimal transactionAmount;
@XmlElement(namespace = "http://jaxb.test.legstar/cusdat", required = true)
protected String transactionComment;
/**
* Gets the value of the transactionDate property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTransactionDate() {
return transactionDate;
}
/**
* Sets the value of the transactionDate property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTransactionDate(String value) {
this.transactionDate = value;
}
/**
* Gets the value of the filler12 property.
*
* @return
* possible object is
* {@link Filler12 }
*
*/
public Filler12 getFiller12() {
return filler12;
}
/**
* Sets the value of the filler12 property.
*
* @param value
* allowed object is
* {@link Filler12 }
*
*/
public void setFiller12(Filler12 value) {
this.filler12 = value;
}
/**
* Gets the value of the transactionAmount property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getTransactionAmount() {
return transactionAmount;
}
/**
* Sets the value of the transactionAmount property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setTransactionAmount(BigDecimal value) {
this.transactionAmount = value;
}
/**
* Gets the value of the transactionComment property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTransactionComment() {
return transactionComment;
}
/**
* Sets the value of the transactionComment property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTransactionComment(String value) {
this.transactionComment = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy