Package com.opengamma.engine.target.resolver

Examples of com.opengamma.engine.target.resolver.AbstractIdentifierResolver


      "Test", "B"));
  private final ComputationTargetRequirement REQUIREMENT_FOO_OR_BAR_BAD = new ComputationTargetRequirement(ComputationTargetType.of(Foo.class).or(ComputationTargetType.of(Bar.class)), ExternalId.of(
      "Test", "C"));

  public DefaultComputationTargetSpecificationResolverTest() {
    RESOLVER.addResolver(ComputationTargetType.of(Foo.class), new AbstractIdentifierResolver() {

      @Override
      public UniqueId resolveExternalId(final ExternalIdBundle identifiers, final VersionCorrection versionCorrection) {
        assertEquals(versionCorrection, VC);
        if (identifiers.contains(ExternalId.of("Test", "B"))) {
View Full Code Here

TOP

Related Classes of com.opengamma.engine.target.resolver.AbstractIdentifierResolver

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.