All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.opengamma.strata.product.bond.LegalEntitySecurity Maven / Gradle / Ivy

There is a newer version: 2.12.48
Show newest version
/*
 * Copyright (C) 2017 - present by OpenGamma Inc. and the OpenGamma group of companies
 *
 * Please see distribution for license.
 */
package com.opengamma.strata.product.bond;

import com.opengamma.strata.product.LegalEntityId;
import com.opengamma.strata.product.Security;
import com.opengamma.strata.product.SecurityInfo;

/**
 * An instrument representing a security associated with a legal entity. 
 * 

* Examples include fixed coupon bonds and capital index bonds. */ public interface LegalEntitySecurity extends Security { /** * Get the legal entity identifier. *

* The identifier is used for the legal entity that issues the security. * * @return the legal entity identifier */ public abstract LegalEntityId getLegalEntityId(); //------------------------------------------------------------------------- @Override public abstract LegalEntitySecurity withInfo(SecurityInfo info); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy