Package com.opengamma.engine.view.compilation

Examples of com.opengamma.engine.view.compilation.CompiledViewDefinitionImpl


    FudgeField earliestValidityField = message.getByName(EARLIEST_VALIDITY_FIELD);
    Instant earliestValidity = earliestValidityField != null ? deserializer.fieldValueToObject(Instant.class, earliestValidityField) : null;
    FudgeField latestValidityField = message.getByName(LATEST_VALIDITY_FIELD);
    Instant latestValidity = latestValidityField != null ? deserializer.fieldValueToObject(Instant.class, latestValidityField) : null;
    return new CompiledViewDefinitionImpl(versionCorrection, compilationId, viewDefinition, portfolio, compiledCalculationConfigurations, earliestValidity, latestValidity);
  }
View Full Code Here


        // pass to downstream listeners? Some special perm denied message in place of results on each computation
        // cycle?


        // Would be better if there was a builder for this!
        CompiledViewDefinition replacementViewDef = new CompiledViewDefinitionImpl(
            compiledViewDefinition.getResolverVersionCorrection(),
            compiledViewDefinition.getCompilationIdentifier(),
            compiledViewDefinition.getViewDefinition(),
            filter.generateRestrictedPortfolio(compiledViewDefinition.getPortfolio()),
            compiledViewDefinition.getCompiledCalculationConfigurations(),
View Full Code Here

TOP

Related Classes of com.opengamma.engine.view.compilation.CompiledViewDefinitionImpl

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.