Package org.drip.xva.topology
Class FundingGroup
java.lang.Object
org.drip.xva.proto.ObjectSpecification
org.drip.xva.topology.FundingGroup
public class FundingGroup extends ObjectSpecification
FundingGroup represents an Aggregation of Credit Debt Groups with a common Funding Group
Specification. The References are:
- Albanese, C., L. Andersen, and, S. Iabichino (2015): The FVA Puzzle: Accounting, Risk Management, and Collateral Trading https://papers.ssrn.com/sol3/paper.cfm?abstract_id_2517301 eSSRN
- Burgard, C., and M. Kjaer (2014): PDE Representations of Derivatives with Bilateral Counter-party Risk and Funding Costs Journal of Credit Risk 7 (3) 1-19
- Burgard, C., and M. Kjaer (2014): In the Balance Risk 24 (11) 72-75
- Gregory, J. (2009): Being Two-faced over Counter-party Credit Risk Risk 20 (2) 86-90
- Piterbarg, V. (2010): Funding Beyond Discounting: Collateral Agreements and Derivatives Pricing Risk 21 (2) 97-102
- Module = Portfolio Core Module
- Library = XVA Analytics Library
- Project = Valuation Adjustments that account for Collateral, CC Credit/Debt and Funding Overhead
- Package = Collateral, Credit/Debt, Funding Topologies
- Author:
- Lakshmi Krishnamurthy
-
Constructor Summary
Constructors Constructor Description FundingGroup(java.lang.String id, java.lang.String name, FundingGroupSpecification fundingGroupSpecification)
FundingGroup Constructor -
Method Summary
Modifier and Type Method Description boolean
addCreditDebtGroup(CreditDebtGroup creditDebtGroup)
Add the specified CreditDebtGroup InstanceEntityFundingLabel
clientFundingLabel()
Retrieve the Client Funding Labeljava.util.Map<java.lang.String,EntityHazardLabel>
clientHazardLabelMap()
Retrieve the Client Hazard Label Mapjava.util.Map<java.lang.String,EntityRecoveryLabel>
clientRecoveryLabelMap()
Retrieve the Client Recovery Label Mapboolean
containsCreditDebtGroup(java.lang.String creditDebtGroupID)
Indicate the specified CreditDebtGroup ID is availableCreditDebtGroup
creditDebtGroup(java.lang.String creditDebtGroupID)
Retrieve the CreditDebtGroupjava.util.Map<java.lang.String,CreditDebtGroup>
creditDebtGroupMap()
Retrieve the Credit Debt Group Mapjava.util.Map<java.lang.String,CSALabel>
csaLabelMap()
Retrieve the CSA Label Mapjava.util.Map<java.lang.String,EntityHazardLabel>
dealerHazardLabelMap()
Retrieve the Dealer Hazard Label MapEntityFundingLabel
dealerSeniorFundingLabel()
Retrieve the Dealer Senior Funding Labeljava.util.Map<java.lang.String,EntityRecoveryLabel>
dealerSeniorRecoveryLabelMap()
Retrieve the Dealer Senior Recovery Label MapEntityFundingLabel
dealerSubordinateFundingLabel()
Retrieve the Dealer Subordinate Funding Labeljava.util.Map<java.lang.String,EntityRecoveryLabel>
dealerSubordinateRecoveryLabelMap()
Retrieve the Dealer Subordinate Recovery Label MapFundingGroupSpecification
fundingGroupSpecification()
Retrieve the Funding Group Specificationjava.util.Map<java.lang.String,OvernightLabel>
overnightLabelMap()
Retrieve the Overnight Label MapMethods inherited from class org.drip.xva.proto.ObjectSpecification
id, name
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
FundingGroup
public FundingGroup(java.lang.String id, java.lang.String name, FundingGroupSpecification fundingGroupSpecification) throws java.lang.ExceptionFundingGroup Constructor- Parameters:
id
- FundingGroup IDname
- FundingGroup NamefundingGroupSpecification
- Funding Group Specification- Throws:
java.lang.Exception
- Thrown if the Inputs are Invalid
-
-
Method Details
-
fundingGroupSpecification
Retrieve the Funding Group Specification- Returns:
- The Funding Group Specification
-
creditDebtGroupMap
Retrieve the Credit Debt Group Map- Returns:
- The Credit Debt Group Map
-
addCreditDebtGroup
Add the specified CreditDebtGroup Instance- Parameters:
creditDebtGroup
- The CreditDebtGroup Instance- Returns:
- TRUE - The CreditDebtGroup Instance successfully added
-
containsCreditDebtGroup
public boolean containsCreditDebtGroup(java.lang.String creditDebtGroupID)Indicate the specified CreditDebtGroup ID is available- Parameters:
creditDebtGroupID
- The CreditDebtGroup ID- Returns:
- TRUE - The CreditDebtGroup is available
-
creditDebtGroup
Retrieve the CreditDebtGroup- Parameters:
creditDebtGroupID
- The CreditDebtGroup ID- Returns:
- The CreditDebtGroup Instance
-
dealerSeniorFundingLabel
Retrieve the Dealer Senior Funding Label- Returns:
- The Dealer Senior Funding Label
-
clientFundingLabel
Retrieve the Client Funding Label- Returns:
- The Client Funding Label
-
dealerSubordinateFundingLabel
Retrieve the Dealer Subordinate Funding Label- Returns:
- The Dealer Subordinate Funding Label
-
overnightLabelMap
Retrieve the Overnight Label Map- Returns:
- The Overnight Label Map
-
csaLabelMap
Retrieve the CSA Label Map- Returns:
- The CSA Label Map
-
dealerHazardLabelMap
Retrieve the Dealer Hazard Label Map- Returns:
- The Dealer Hazard Label Map
-
clientHazardLabelMap
Retrieve the Client Hazard Label Map- Returns:
- The Client Hazard Label Map
-
dealerSeniorRecoveryLabelMap
Retrieve the Dealer Senior Recovery Label Map- Returns:
- The Dealer Senior Recovery Label Map
-
clientRecoveryLabelMap
Retrieve the Client Recovery Label Map- Returns:
- The Client Recovery Label Map
-
dealerSubordinateRecoveryLabelMap
Retrieve the Dealer Subordinate Recovery Label Map- Returns:
- The Dealer Subordinate Recovery Label Map
-