Class Withdrawal
Java class for Withdrawal complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="Withdrawal">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<choice>
<sequence>
<element name="partyTradeIdentifier" type="{http://www.fpml.org/FpML-5/confirmation}PartyTradeIdentifier" maxOccurs="unbounded"/>
<element name="partyTradeInformation" type="{http://www.fpml.org/FpML-5/confirmation}WithdrawalPartyTradeInformation" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
<element name="trade" type="{http://www.fpml.org/FpML-5/confirmation}Trade"/>
</choice>
<element name="effectiveDate" type="{http://www.w3.org/2001/XMLSchema}date"/>
<element name="requestedAction" type="{http://www.fpml.org/FpML-5/confirmation}RequestedWithdrawalAction" minOccurs="0"/>
<element name="reason" type="{http://www.fpml.org/FpML-5/confirmation}WithdrawalReason" maxOccurs="unbounded" minOccurs="0"/>
<element name="reportingRegime" type="{http://www.fpml.org/FpML-5/confirmation}ReportingRegimeIdentifier" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
</restriction>
</complexContent>
</complexType>
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected XMLGregorianCalendarprotected List<PartyTradeIdentifier>protected List<WithdrawalPartyTradeInformation>protected List<WithdrawalReason>protected List<ReportingRegimeIdentifier>protected RequestedWithdrawalActionprotected Trade -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGets the value of the effectiveDate property.Gets the value of the partyTradeIdentifier property.Gets the value of the partyTradeInformation property.Gets the value of the reason property.Gets the value of the reportingRegime property.Gets the value of the requestedAction property.getTrade()Gets the value of the trade property.voidsetEffectiveDate(XMLGregorianCalendar value)Sets the value of the effectiveDate property.voidSets the value of the requestedAction property.voidSets the value of the trade property.
-
Field Details
-
partyTradeIdentifier
-
partyTradeInformation
-
trade
-
effectiveDate
-
requestedAction
-
reason
-
reportingRegime
-
-
Constructor Details
-
Withdrawal
public Withdrawal()
-
-
Method Details
-
getPartyTradeIdentifier
Gets the value of the partyTradeIdentifier 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 Jakarta XML Binding object. This is why there is not a
setmethod for the partyTradeIdentifier property.For example, to add a new item, do as follows:
getPartyTradeIdentifier().add(newItem);Objects of the following type(s) are allowed in the list
PartyTradeIdentifier -
getPartyTradeInformation
Gets the value of the partyTradeInformation 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 Jakarta XML Binding object. This is why there is not a
setmethod for the partyTradeInformation property.For example, to add a new item, do as follows:
getPartyTradeInformation().add(newItem);Objects of the following type(s) are allowed in the list
WithdrawalPartyTradeInformation -
getTrade
Gets the value of the trade property.- Returns:
- possible object is
Trade
-
setTrade
Sets the value of the trade property.- Parameters:
value- allowed object isTrade
-
getEffectiveDate
Gets the value of the effectiveDate property.- Returns:
- possible object is
XMLGregorianCalendar
-
setEffectiveDate
Sets the value of the effectiveDate property.- Parameters:
value- allowed object isXMLGregorianCalendar
-
getRequestedAction
Gets the value of the requestedAction property.- Returns:
- possible object is
RequestedWithdrawalAction
-
setRequestedAction
Sets the value of the requestedAction property.- Parameters:
value- allowed object isRequestedWithdrawalAction
-
getReason
Gets the value of the reason 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 Jakarta XML Binding object. This is why there is not a
setmethod for the reason property.For example, to add a new item, do as follows:
getReason().add(newItem);Objects of the following type(s) are allowed in the list
WithdrawalReason -
getReportingRegime
Gets the value of the reportingRegime 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 Jakarta XML Binding object. This is why there is not a
setmethod for the reportingRegime property.For example, to add a new item, do as follows:
getReportingRegime().add(newItem);Objects of the following type(s) are allowed in the list
ReportingRegimeIdentifier
-