![JAR search and dependency download from the Maven repository](/logo.png)
com.opengamma.strata.product.bond.LegalEntitySecurity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of strata-product Show documentation
Show all versions of strata-product Show documentation
Domain objects describing trades and products in financial markets
/*
* 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