Package com.opengamma.core.security.impl

Examples of com.opengamma.core.security.impl.DataSecuritySourceResource


    ComponentInfo redisInfo = new ComponentInfo(NonVersionedRedisSecuritySource.class, getClassifier());
    redisInfo.addAttribute(ComponentInfoAttributes.LEVEL, 1);
    repo.registerComponent(redisInfo, source);
   
    if (isPublishRest()) {
      repo.getRestComponents().publish(sourceInfo, new DataSecuritySourceResource(source));
    }
  }
View Full Code Here


    repo.registerComponent(infoMaster, master);
    repo.getRestComponents().publish(infoMaster, new DataSecurityMasterResource(master));

    final ComponentInfo infoSource = new ComponentInfo(SecuritySource.class, "test");
    repo.registerComponent(infoSource, source);
    repo.getRestComponents().publish(infoSource, new DataSecuritySourceResource(source));
  }
View Full Code Here

    ComponentInfo info = new ComponentInfo(SecuritySource.class, getClassifier());
    info.addAttribute(ComponentInfoAttributes.LEVEL, 1);
    info.addAttribute(ComponentInfoAttributes.REMOTE_CLIENT_JAVA, RemoteSecuritySource.class);
    repo.registerComponent(info, source);
    if (isPublishRest()) {
      repo.getRestComponents().publish(info, new DataSecuritySourceResource(source));
    }
  }
View Full Code Here

TOP

Related Classes of com.opengamma.core.security.impl.DataSecuritySourceResource

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.