com.prowidesoftware.swift.model.mx.sys.dic.SwGetFileResponseHandle Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pw-iso20022 Show documentation
Show all versions of pw-iso20022 Show documentation
Prowide Library for ISO 20022 messages
The newest version!
package com.prowidesoftware.swift.model.mx.sys.dic;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
/**
* Java class for GetFileResponseHandle complex type.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "GetFileResponseHandle", propOrder = {
"transferRef",
"transferAnswer",
"rejectDescription",
"rejectInfo",
"size",
"digest",
"fileDescription",
"fileInfo",
"ackIndicator",
"ackServerInfo"
})
public class SwGetFileResponseHandle {
@XmlElement(name = "TransferRef", required = true)
protected String transferRef;
@XmlElement(name = "TransferAnswer", required = true)
protected String transferAnswer;
@XmlElement(name = "RejectDescription")
protected String rejectDescription;
@XmlElement(name = "RejectInfo")
protected String rejectInfo;
@XmlElement(name = "Size")
protected String size;
@XmlElement(name = "Digest")
protected SwDigest digest;
@XmlElement(name = "FileDescription")
protected String fileDescription;
@XmlElement(name = "FileInfo")
protected String fileInfo;
@XmlElement(name = "AckIndicator")
protected String ackIndicator;
@XmlElement(name = "AckServerInfo")
protected SwServerInfo ackServerInfo;
/**
* Gets the value of the transferRef property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTransferRef() {
return transferRef;
}
/**
* Sets the value of the transferRef property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public SwGetFileResponseHandle setTransferRef(String value) {
this.transferRef = value;
return this;
}
/**
* Gets the value of the transferAnswer property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTransferAnswer() {
return transferAnswer;
}
/**
* Sets the value of the transferAnswer property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public SwGetFileResponseHandle setTransferAnswer(String value) {
this.transferAnswer = value;
return this;
}
/**
* Gets the value of the rejectDescription property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRejectDescription() {
return rejectDescription;
}
/**
* Sets the value of the rejectDescription property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public SwGetFileResponseHandle setRejectDescription(String value) {
this.rejectDescription = value;
return this;
}
/**
* Gets the value of the rejectInfo property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRejectInfo() {
return rejectInfo;
}
/**
* Sets the value of the rejectInfo property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public SwGetFileResponseHandle setRejectInfo(String value) {
this.rejectInfo = value;
return this;
}
/**
* Gets the value of the size property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSize() {
return size;
}
/**
* Sets the value of the size property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public SwGetFileResponseHandle setSize(String value) {
this.size = value;
return this;
}
/**
* Gets the value of the digest property.
*
* @return
* possible object is
* {@link SwDigest }
*
*/
public SwDigest getDigest() {
return digest;
}
/**
* Sets the value of the digest property.
*
* @param value
* allowed object is
* {@link SwDigest }
*
*/
public SwGetFileResponseHandle setDigest(SwDigest value) {
this.digest = value;
return this;
}
/**
* Gets the value of the fileDescription property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFileDescription() {
return fileDescription;
}
/**
* Sets the value of the fileDescription property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public SwGetFileResponseHandle setFileDescription(String value) {
this.fileDescription = value;
return this;
}
/**
* Gets the value of the fileInfo property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFileInfo() {
return fileInfo;
}
/**
* Sets the value of the fileInfo property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public SwGetFileResponseHandle setFileInfo(String value) {
this.fileInfo = value;
return this;
}
/**
* Gets the value of the ackIndicator property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAckIndicator() {
return ackIndicator;
}
/**
* Sets the value of the ackIndicator property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public SwGetFileResponseHandle setAckIndicator(String value) {
this.ackIndicator = value;
return this;
}
/**
* Gets the value of the ackServerInfo property.
*
* @return
* possible object is
* {@link SwServerInfo }
*
*/
public SwServerInfo getAckServerInfo() {
return ackServerInfo;
}
/**
* Sets the value of the ackServerInfo property.
*
* @param value
* allowed object is
* {@link SwServerInfo }
*
*/
public SwGetFileResponseHandle setAckServerInfo(SwServerInfo value) {
this.ackServerInfo = value;
return this;
}
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this, ToStringStyle.MULTI_LINE_STYLE);
}
@Override
public boolean equals(Object that) {
return EqualsBuilder.reflectionEquals(this, that);
}
@Override
public int hashCode() {
return HashCodeBuilder.reflectionHashCode(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy