com.prowidesoftware.swift.model.mx.dic.BusinessDay9 Maven / Gradle / Ivy
Show all versions of pw-iso20022 Show documentation
package com.prowidesoftware.swift.model.mx.dic;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.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;
/**
* Payment system operational information, such as opening, closure, session period or events, given per currency.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "BusinessDay9", propOrder = {
"sysDt",
"sysSts",
"sysInfPerCcy"
})
public class BusinessDay9 {
@XmlElement(name = "SysDt")
protected DateAndDateTime2Choice sysDt;
@XmlElement(name = "SysSts")
protected SystemStatus3 sysSts;
@XmlElement(name = "SysInfPerCcy")
protected List sysInfPerCcy;
/**
* Gets the value of the sysDt property.
*
* @return
* possible object is
* {@link DateAndDateTime2Choice }
*
*/
public DateAndDateTime2Choice getSysDt() {
return sysDt;
}
/**
* Sets the value of the sysDt property.
*
* @param value
* allowed object is
* {@link DateAndDateTime2Choice }
*
*/
public BusinessDay9 setSysDt(DateAndDateTime2Choice value) {
this.sysDt = value;
return this;
}
/**
* Gets the value of the sysSts property.
*
* @return
* possible object is
* {@link SystemStatus3 }
*
*/
public SystemStatus3 getSysSts() {
return sysSts;
}
/**
* Sets the value of the sysSts property.
*
* @param value
* allowed object is
* {@link SystemStatus3 }
*
*/
public BusinessDay9 setSysSts(SystemStatus3 value) {
this.sysSts = value;
return this;
}
/**
* Gets the value of the sysInfPerCcy property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the sysInfPerCcy property.
*
*
* For example, to add a new item, do as follows:
*
* getSysInfPerCcy().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link SystemAvailabilityAndEvents3 }
*
*
*/
public List getSysInfPerCcy() {
if (sysInfPerCcy == null) {
sysInfPerCcy = new ArrayList();
}
return this.sysInfPerCcy;
}
@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);
}
/**
* Adds a new item to the sysInfPerCcy list.
* @see #getSysInfPerCcy()
*
*/
public BusinessDay9 addSysInfPerCcy(SystemAvailabilityAndEvents3 sysInfPerCcy) {
getSysInfPerCcy().add(sysInfPerCcy);
return this;
}
}