Examples of FunctionConfigurationBundle


Examples of com.opengamma.engine.function.config.FunctionConfigurationBundle

  }

  @GET
  @Path("repoConfigs/all")
  public Response getAll() {
    FunctionConfigurationBundle result = getRepositoryConfigurationSource().getFunctionConfiguration();
    return responseOkFudge(result);
  }
View Full Code Here

Examples of com.opengamma.engine.function.config.FunctionConfigurationBundle

            }
            throw new UnsupportedOperationException("Can't compare " + o1.getClass() + " and " + o2.getClass());
          }

        });
        return new FunctionConfigurationBundle(functions);
      }

    };
  }
View Full Code Here

Examples of com.opengamma.engine.function.config.FunctionConfigurationBundle

    functions.add(functionConfiguration(VolatilitySurfaceDefinitionFunction.class));
  }

  protected FunctionConfigurationSource cubeFunctionConfiguration() {
    // TODO
    return new SimpleFunctionConfigurationSource(new FunctionConfigurationBundle(Collections.<FunctionConfiguration>emptyList()));
  }
View Full Code Here

Examples of com.opengamma.engine.function.config.FunctionConfigurationBundle

    return new SimpleFunctionConfigurationSource(new FunctionConfigurationBundle(Collections.<FunctionConfiguration>emptyList()));
  }

  protected FunctionConfigurationSource fittedResultsFunctionConfiguration() {
    // TODO
    return new SimpleFunctionConfigurationSource(new FunctionConfigurationBundle(Collections.<FunctionConfiguration>emptyList()));
  }
View Full Code Here

Examples of com.opengamma.engine.function.config.FunctionConfigurationBundle

    functions.add(functionConfiguration(ForexBlackVolatilitySurfaceFunction.Spline.class));
  }

  protected FunctionConfigurationSource pureFunctionConfiguration() {
    // TODO
    return new SimpleFunctionConfigurationSource(new FunctionConfigurationBundle(Collections.<FunctionConfiguration>emptyList()));
  }
View Full Code Here

Examples of com.opengamma.engine.function.config.FunctionConfigurationBundle

    return LocalVolFunctions.instance();
  }

  protected FunctionConfigurationSource vannaVolgaFunctionConfiguration() {
    // TODO
    return new SimpleFunctionConfigurationSource(new FunctionConfigurationBundle(Collections.<FunctionConfiguration>emptyList()));
  }
View Full Code Here

Examples of com.opengamma.engine.function.config.FunctionConfigurationBundle

    functions.add(functionConfiguration(EquityOptionMonetizedVegaFunction.class));
  }

  protected FunctionConfigurationSource futuresFunctionConfiguration() {
    // TODO
    return new SimpleFunctionConfigurationSource(new FunctionConfigurationBundle(Collections.<FunctionConfiguration>emptyList()));
  }
View Full Code Here

Examples of com.opengamma.engine.function.config.FunctionConfigurationBundle

    return PNLFunctions.instance();
  }

  protected FunctionConfigurationSource riskFactorFunctionConfiguration() {
    // TODO
    return new SimpleFunctionConfigurationSource(new FunctionConfigurationBundle(Collections.<FunctionConfiguration>emptyList()));
  }
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.