Package com.opengamma.enginedb.stats

Examples of com.opengamma.enginedb.stats.DbFunctionCostsMaster$FunctionCostsDocumentExtractor


  }

  //-------------------------------------------------------------------------
  @Override
  protected void doSetUp() {
    _costsMaster = new DbFunctionCostsMaster(getDbConnector());
  }
View Full Code Here


  }

  //-------------------------------------------------------------------------
  @Override
  public DbFunctionCostsMaster createObject() {
    DbFunctionCostsMaster master = new DbFunctionCostsMaster(getDbConnector());
    return master;
  }
View Full Code Here

  @Override
  public void init(ComponentRepository repo, LinkedHashMap<String, String> configuration) {
    ComponentInfo info = new ComponentInfo(FunctionCostsMaster.class, getClassifier());
   
    // create
    DbFunctionCostsMaster master = new DbFunctionCostsMaster(getDbConnector());
    checkSchema(master.getSchemaVersion(), "eng");
   
    // register
    info.addAttribute(ComponentInfoAttributes.LEVEL, 1);
    info.addAttribute(ComponentInfoAttributes.REMOTE_CLIENT_JAVA, RemoteFunctionCostsMaster.class);
    repo.registerComponent(info, master);
View Full Code Here

TOP

Related Classes of com.opengamma.enginedb.stats.DbFunctionCostsMaster$FunctionCostsDocumentExtractor

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.