com.prowidesoftware.swift.model.mx.dic.Camt01200102 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.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;
/**
* Scope
* The DeleteLimit message is sent by a member to the transaction administrator.
* It is used to request the deletion of one particular limit set by the member and managed by the transaction administrator.
* Each DeleteLimit message can only delete one type of current limit (risk or liquidity management limit).
* Usage
* There are two purposes in establishing limits: to help members to make more efficient use of their liquidity and to facilitate risk management.
* When limits are reached, the transaction administrator stops posting transactions to the account and puts them in a queue. The transaction administrator will resume processing the transactions held in the queue when the account balance of the member becomes sufficient to allow for the transactions to be executed while remaining within the limits.
* Limits set by members are expressed as a maximum net position, and are managed by the transaction administrator. At any time during the day, the transaction administrator can ensure that the net position resulting from all incoming and outgoing transactions for a given member will not go over the fixed limit.
* Limits are set by a member of the system either with regard to another specific member (bilateral limit) or with regard to all other participants (multilateral limit). As a result, there can be a maximum of one multilateral limit and as many bilateral limits as members of the system.
* Note that for a bilateral limit, a member always needs to identify the counterparty to which it applies.
* At any time during the operating hours of the system, the member can request the transaction administrator to delete any of the limits it has set (current limits). For example, the reason may be to unlock the payments queue regarding a particular member, or following a risk management decision issued after an exceptional event has occurred.
* The member will submit a DeleteLimit message identifying which limit it wants to delete (current limit risk/liquidity limit concepts have been merged) based on following criteria:
* - type of limit(s) (current/default)
* - value of the limit(s) (default and/or current limit(s))
* - identification of the counterparty (bilateral limit)
* Based on the criteria received within the DeleteLimit message, the transaction administrator will execute or reject the requested modifications.
* The transaction administrator may send a Receipt message as a reply to the DeleteLimit request.
* To verify the outcome of the request, the member may submit a GetLimit message with the appropriate search criteria.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "camt.012.001.02", propOrder = {
"msgId",
"curLmt"
})
public class Camt01200102 {
@XmlElement(name = "MsgId", required = true)
protected MessageIdentification msgId;
@XmlElement(name = "CurLmt")
protected LimitIdentificationDetails1 curLmt;
/**
* Gets the value of the msgId property.
*
* @return
* possible object is
* {@link MessageIdentification }
*
*/
public MessageIdentification getMsgId() {
return msgId;
}
/**
* Sets the value of the msgId property.
*
* @param value
* allowed object is
* {@link MessageIdentification }
*
*/
public Camt01200102 setMsgId(MessageIdentification value) {
this.msgId = value;
return this;
}
/**
* Gets the value of the curLmt property.
*
* @return
* possible object is
* {@link LimitIdentificationDetails1 }
*
*/
public LimitIdentificationDetails1 getCurLmt() {
return curLmt;
}
/**
* Sets the value of the curLmt property.
*
* @param value
* allowed object is
* {@link LimitIdentificationDetails1 }
*
*/
public Camt01200102 setCurLmt(LimitIdentificationDetails1 value) {
this.curLmt = 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