Package com.opengamma.integration.viewer.status.impl

Examples of com.opengamma.integration.viewer.status.impl.ViewStatusCalculationWorker


    generateViewStatusReport(portfolioId, option);
  }
 
  private void generateViewStatusReport(final UniqueId portfolioId, final ViewStatusOption option) {
   
    ViewStatusCalculationWorker calculationWorker = new ViewStatusCalculationWorker(getToolContext(), portfolioId, option);
    ViewStatusResultAggregator resultAggregator = calculationWorker.run();
   
    ViewStatusResultProducer resultProducer = new ViewStatusResultProducer();
    String statusResult = resultProducer.statusResult(resultAggregator, option.getFormat(), option.getAggregateType());
    try {
      File outputFile = option.getOutputFile();
View Full Code Here

TOP

Related Classes of com.opengamma.integration.viewer.status.impl.ViewStatusCalculationWorker

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.