Uses of Class
net.finmath.smartcontract.model.PlainSwapOperationRequest
Packages that use PlainSwapOperationRequest
Package
Description
-
Uses of PlainSwapOperationRequest in net.finmath.smartcontract.api
Methods in net.finmath.smartcontract.api that return types with arguments of type PlainSwapOperationRequestModifier and TypeMethodDescriptiondefault org.springframework.http.ResponseEntity<PlainSwapOperationRequest>PlainSwapEditorApi._loadContract(@Valid String body)POST /plain-swap-editor/load-contract : Request a saved contract.default org.springframework.http.ResponseEntity<PlainSwapOperationRequest>PlainSwapEditorApi.loadContract(String body)Methods in net.finmath.smartcontract.api with parameters of type PlainSwapOperationRequestModifier and TypeMethodDescriptiondefault org.springframework.http.ResponseEntity<ValueResult>PlainSwapEditorApi._evaluateFromPlainSwapEditor(@Valid PlainSwapOperationRequest plainSwapOperationRequest)POST /plain-swap-editor/evaluate-from-editor : Request mapping for valuation of the trade data coming from the editor.default org.springframework.http.ResponseEntity<String>PlainSwapEditorApi._generatePlainSwapSdcml(@Valid PlainSwapOperationRequest plainSwapOperationRequest)POST /plain-swap-editor/generate-xml : Request mapping for generation of the trade data SDCmLdefault org.springframework.http.ResponseEntity<List<CashflowPeriod>>PlainSwapEditorApi._getFixedSchedule(@Valid PlainSwapOperationRequest plainSwapOperationRequest)POST /plain-swap-editor/get-fixed-schedule : Request payment schedule for the fixed leg defined in the editor.default org.springframework.http.ResponseEntity<List<CashflowPeriod>>PlainSwapEditorApi._getFloatingSchedule(@Valid PlainSwapOperationRequest plainSwapOperationRequest)POST /plain-swap-editor/get-floating-schedule : Request payment schedule for the floating leg defined in the editor.default org.springframework.http.ResponseEntity<Double>PlainSwapEditorApi._getParRate(@Valid PlainSwapOperationRequest plainSwapOperationRequest)POST /plain-swap-editor/get-par-rate : Request the par rate for the swap defined in the editor.default org.springframework.http.ResponseEntity<ValueResult>PlainSwapEditorApi._refreshMarketData(@Valid PlainSwapOperationRequest plainSwapOperationRequest)POST /plain-swap-editor/refresh-market-data : Request mapping for valuation of the trade data coming from the editor.default org.springframework.http.ResponseEntity<ValueResult>PlainSwapEditorApi.evaluateFromPlainSwapEditor(PlainSwapOperationRequest plainSwapOperationRequest)default org.springframework.http.ResponseEntity<String>PlainSwapEditorApi.generatePlainSwapSdcml(PlainSwapOperationRequest plainSwapOperationRequest)default org.springframework.http.ResponseEntity<List<CashflowPeriod>>PlainSwapEditorApi.getFixedSchedule(PlainSwapOperationRequest plainSwapOperationRequest)default org.springframework.http.ResponseEntity<List<CashflowPeriod>>PlainSwapEditorApi.getFloatingSchedule(PlainSwapOperationRequest plainSwapOperationRequest)default org.springframework.http.ResponseEntity<Double>PlainSwapEditorApi.getParRate(PlainSwapOperationRequest plainSwapOperationRequest)default org.springframework.http.ResponseEntity<ValueResult>PlainSwapEditorApi.refreshMarketData(PlainSwapOperationRequest plainSwapOperationRequest) -
Uses of PlainSwapOperationRequest in net.finmath.smartcontract.model
Methods in net.finmath.smartcontract.model that return PlainSwapOperationRequestModifier and TypeMethodDescriptionPlainSwapOperationRequest.addValuationSymbolsItem(FrontendItemSpec valuationSymbolsItem)PlainSwapOperationRequest.dailySettlementTime(String dailySettlementTime)PlainSwapOperationRequest.effectiveDate(OffsetDateTime effectiveDate)PlainSwapOperationRequest.firstCounterparty(Counterparty firstCounterparty)PlainSwapOperationRequest.fixedDayCountFraction(String fixedDayCountFraction)PlainSwapOperationRequest.fixedPayingParty(Counterparty fixedPayingParty)PlainSwapOperationRequest.fixedPaymentFrequency(PaymentFrequency fixedPaymentFrequency)PlainSwapOperationRequest.fixedRollConvention(String fixedRollConvention)PlainSwapOperationRequest.fixPayerPartyID(String fixPayerPartyID)PlainSwapOperationRequest.floatingDayCountFraction(String floatingDayCountFraction)PlainSwapOperationRequest.floatingFixingDayOffset(Integer floatingFixingDayOffset)PlainSwapOperationRequest.floatingPayingParty(Counterparty floatingPayingParty)PlainSwapOperationRequest.floatingPaymentFrequency(PaymentFrequency floatingPaymentFrequency)PlainSwapOperationRequest.floatingRateIndex(String floatingRateIndex)PlainSwapOperationRequest.floatingRollConvention(String floatingRollConvention)@Valid PlainSwapOperationRequestSaveContractRequest.getPlainSwapOperationRequest()Get plainSwapOperationRequestPlainSwapOperationRequest.marginBufferAmount(Double marginBufferAmount)PlainSwapOperationRequest.marketDataProvider(String marketDataProvider)PlainSwapOperationRequest.notionalAmount(Double notionalAmount)PlainSwapOperationRequest.receiverPartyID(String receiverPartyID)PlainSwapOperationRequest.secondCounterparty(Counterparty secondCounterparty)PlainSwapOperationRequest.terminationDate(OffsetDateTime terminationDate)PlainSwapOperationRequest.terminationFeeAmount(Double terminationFeeAmount)PlainSwapOperationRequest.tradeDate(OffsetDateTime tradeDate)PlainSwapOperationRequest.uniqueTradeIdentifier(String uniqueTradeIdentifier)PlainSwapOperationRequest.valuationSymbols(List<FrontendItemSpec> valuationSymbols)Methods in net.finmath.smartcontract.model with parameters of type PlainSwapOperationRequestModifier and TypeMethodDescriptionSaveContractRequest.plainSwapOperationRequest(PlainSwapOperationRequest plainSwapOperationRequest)voidSaveContractRequest.setPlainSwapOperationRequest(PlainSwapOperationRequest plainSwapOperationRequest) -
Uses of PlainSwapOperationRequest in net.finmath.smartcontract.product.xml
Constructors in net.finmath.smartcontract.product.xml with parameters of type PlainSwapOperationRequestModifierConstructorDescriptionPlainSwapEditorHandler(PlainSwapOperationRequest plainSwapOperationRequest, String templateXml, String schemaPath, String projectVersion)Returns the plain swap editor handler. -
Uses of PlainSwapOperationRequest in net.finmath.smartcontract.valuation.service.controllers
Methods in net.finmath.smartcontract.valuation.service.controllers that return types with arguments of type PlainSwapOperationRequestModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<PlainSwapOperationRequest>PlainSwapEditorController.loadContract(String requestedFilename)Controller that handles requests for loading a stored contract.Methods in net.finmath.smartcontract.valuation.service.controllers with parameters of type PlainSwapOperationRequestModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<ValueResult>PlainSwapEditorController.evaluateFromPlainSwapEditor(PlainSwapOperationRequest plainSwapOperationRequest)Controller that handles requests for contract valuation.org.springframework.http.ResponseEntity<String>PlainSwapEditorController.generatePlainSwapSdcml(PlainSwapOperationRequest plainSwapOperationRequest)Controller that handles requests for generation of a SDCmL document.org.springframework.http.ResponseEntity<List<CashflowPeriod>>PlainSwapEditorController.getFixedSchedule(PlainSwapOperationRequest plainSwapOperationRequest)Controller that handles requests for payment schedule generation relative to the fixed leg.org.springframework.http.ResponseEntity<List<CashflowPeriod>>PlainSwapEditorController.getFloatingSchedule(PlainSwapOperationRequest plainSwapOperationRequest)Controller that handles requests for payment schedule generation relative to the floating leg.org.springframework.http.ResponseEntity<Double>PlainSwapEditorController.getParRate(PlainSwapOperationRequest plainSwapOperationRequest)Controller method that handles requests for calculating the par rateorg.springframework.http.ResponseEntity<ValueResult>PlainSwapEditorController.refreshMarketData(PlainSwapOperationRequest plainSwapOperationRequest)Controller that handles requests for refresh of the market data