com.prowidesoftware.swift.model.mx.dic.MaintenanceDelegationRequestV07 Maven / Gradle / Ivy
package com.prowidesoftware.swift.model.mx.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;
/**
* The MaintenanceDelegationRequest message is sent by a terminal manager to the master terminal manager to request delegation of maintenance functions or maintenance operation on the terminal estate managed by the master terminal manager.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "MaintenanceDelegationRequestV07", propOrder = {
"hdr",
"mntncDlgtnReq",
"sctyTrlr"
})
public class MaintenanceDelegationRequestV07 {
@XmlElement(name = "Hdr")
protected TMSHeader1 hdr;
@XmlElement(name = "MntncDlgtnReq", required = true)
protected MaintenanceDelegationRequest7 mntncDlgtnReq;
@XmlElement(name = "SctyTrlr", required = true)
protected ContentInformationType25 sctyTrlr;
/**
* Gets the value of the hdr property.
*
* @return
* possible object is
* {@link TMSHeader1 }
*
*/
public TMSHeader1 getHdr() {
return hdr;
}
/**
* Sets the value of the hdr property.
*
* @param value
* allowed object is
* {@link TMSHeader1 }
*
*/
public MaintenanceDelegationRequestV07 setHdr(TMSHeader1 value) {
this.hdr = value;
return this;
}
/**
* Gets the value of the mntncDlgtnReq property.
*
* @return
* possible object is
* {@link MaintenanceDelegationRequest7 }
*
*/
public MaintenanceDelegationRequest7 getMntncDlgtnReq() {
return mntncDlgtnReq;
}
/**
* Sets the value of the mntncDlgtnReq property.
*
* @param value
* allowed object is
* {@link MaintenanceDelegationRequest7 }
*
*/
public MaintenanceDelegationRequestV07 setMntncDlgtnReq(MaintenanceDelegationRequest7 value) {
this.mntncDlgtnReq = value;
return this;
}
/**
* Gets the value of the sctyTrlr property.
*
* @return
* possible object is
* {@link ContentInformationType25 }
*
*/
public ContentInformationType25 getSctyTrlr() {
return sctyTrlr;
}
/**
* Sets the value of the sctyTrlr property.
*
* @param value
* allowed object is
* {@link ContentInformationType25 }
*
*/
public MaintenanceDelegationRequestV07 setSctyTrlr(ContentInformationType25 value) {
this.sctyTrlr = 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