com.opengamma.sdk.margin.MarginCalcResultStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk-margin Show documentation
Show all versions of sdk-margin Show documentation
OpenGamma SDK - Provides access to the Margin service
/*
* Copyright (C) 2016 - present by OpenGamma Inc. and the OpenGamma group of companies
*
* Please see distribution for license.
*/
package com.opengamma.sdk.margin;
/**
* The status of the calculation.
*/
public enum MarginCalcResultStatus {
/**
* Calculation is pending.
*/
PENDING,
/**
* Calculation has completed.
*/
COMPLETED;
}