Examples of DbFunctionCostsMaster


Examples of com.opengamma.enginedb.stats.DbFunctionCostsMaster

  }

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

Examples of com.opengamma.enginedb.stats.DbFunctionCostsMaster

  }

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

Examples of com.opengamma.enginedb.stats.DbFunctionCostsMaster

  @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
Copyright © 2018 www.massapi.com. 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.