Class PlainSwapEditorController

java.lang.Object
net.finmath.smartcontract.valuation.service.controllers.PlainSwapEditorController
All Implemented Interfaces:
PlainSwapEditorApi

@RestController @CrossOrigin(origins={"http://localhost:4200","${serviceUrl}"}, allowCredentials="true") public class PlainSwapEditorController extends Object implements PlainSwapEditorApi
  • Constructor Details

    • PlainSwapEditorController

      public PlainSwapEditorController(DatabaseConnector databaseConnector, ResourceGovernor resourceGovernor, com.fasterxml.jackson.databind.ObjectMapper objectMapper, ValuationConfig valuationConfig, ValuationConfig valuationConfig1, org.springframework.boot.info.BuildProperties buildProperties)
  • Method Details

    • generatePlainSwapSdcml

      public org.springframework.http.ResponseEntity<String> generatePlainSwapSdcml(PlainSwapOperationRequest plainSwapOperationRequest)
      Controller that handles requests for generation of a SDCmL document.
      Specified by:
      generatePlainSwapSdcml in interface PlainSwapEditorApi
      Parameters:
      plainSwapOperationRequest - , the specification for the contract as gathered from the user forms
      Returns:
      a string containing the SDCmL document
    • evaluateFromPlainSwapEditor

      public org.springframework.http.ResponseEntity<ValueResult> evaluateFromPlainSwapEditor(PlainSwapOperationRequest plainSwapOperationRequest)
      Controller that handles requests for contract valuation.
      Specified by:
      evaluateFromPlainSwapEditor in interface PlainSwapEditorApi
      Parameters:
      plainSwapOperationRequest - the specification for the contract as gathered from the user forms
      Returns:
      a result object containing value, currency and reference timestamp for the dataset used
    • getFixedSchedule

      public org.springframework.http.ResponseEntity<List<CashflowPeriod>> getFixedSchedule(PlainSwapOperationRequest plainSwapOperationRequest)
      Controller that handles requests for payment schedule generation relative to the fixed leg.
      Specified by:
      getFixedSchedule in interface PlainSwapEditorApi
      Parameters:
      plainSwapOperationRequest - the specification for the contract as gathered from the user forms
      Returns:
      a list of cashflows matched with their reference period
    • getFloatingSchedule

      public org.springframework.http.ResponseEntity<List<CashflowPeriod>> getFloatingSchedule(PlainSwapOperationRequest plainSwapOperationRequest)
      Controller that handles requests for payment schedule generation relative to the floating leg.
      Specified by:
      getFloatingSchedule in interface PlainSwapEditorApi
      Parameters:
      plainSwapOperationRequest - the specification for the contract as gathered from the user forms
      Returns:
      a list of cashflows matched with their reference period
    • grabMarketData

      public org.springframework.http.ResponseEntity<MarketDataSet> grabMarketData()
      Controller that echoes the active dataset to the client
      Specified by:
      grabMarketData in interface PlainSwapEditorApi
      Returns:
      a market data transfer message that matches the contents of the active dataset
    • refreshMarketData

      public org.springframework.http.ResponseEntity<ValueResult> refreshMarketData(PlainSwapOperationRequest plainSwapOperationRequest)
      Controller that handles requests for refresh of the market data
      Specified by:
      refreshMarketData in interface PlainSwapEditorApi
      Returns:
      the valuation result obtained with the refreshed data
    • getParRate

      public org.springframework.http.ResponseEntity<Double> getParRate(PlainSwapOperationRequest plainSwapOperationRequest)
      Controller method that handles requests for calculating the par rate
      Specified by:
      getParRate in interface PlainSwapEditorApi
      Parameters:
      plainSwapOperationRequest - the specification for the contract as gathered from the user forms
      Returns:
      the par rate
    • getSavedContracts

      public org.springframework.http.ResponseEntity<List<String>> getSavedContracts()
      Controller that handles requests for the contents of the user contract storage.
      Specified by:
      getSavedContracts in interface PlainSwapEditorApi
      Returns:
      a list of file names
    • changeDataset

      public org.springframework.http.ResponseEntity<String> changeDataset(String fileName)
      Controller that handles requests for performing the hotswap of the active dataset
      Specified by:
      changeDataset in interface PlainSwapEditorApi
      Parameters:
      fileName - the source file name or the USELIVE directive
      Returns:
      a brief status message
    • getSavedMarketData

      public org.springframework.http.ResponseEntity<List<String>> getSavedMarketData()
      Controller that handles requests for the contents of the user market data storage.
      Specified by:
      getSavedMarketData in interface PlainSwapEditorApi
      Returns:
      a list of file names
    • loadContract

      public org.springframework.http.ResponseEntity<PlainSwapOperationRequest> loadContract(String requestedFilename)
      Controller that handles requests for loading a stored contract.
      Specified by:
      loadContract in interface PlainSwapEditorApi
      Parameters:
      requestedFilename - the name of the file containing the stored contract
      Returns:
      a contract specification
    • saveContract

      public org.springframework.http.ResponseEntity<String> saveContract(SaveContractRequest saveContractRequest)
      Controller that handles requests for saving a contract.
      Specified by:
      saveContract in interface PlainSwapEditorApi
      Parameters:
      saveContractRequest - an object containing contract specification and destination file name
      Returns:
      a brief status message
    • uploadMarketData

      public org.springframework.http.ResponseEntity<String> uploadMarketData(org.springframework.web.multipart.MultipartFile marketData)
      Controller that handles requests for saving market data.
      Specified by:
      uploadMarketData in interface PlainSwapEditorApi
      Parameters:
      marketData - a multipart file wrapping the source JSON file
      Returns:
      a brief status message