Package com.opengamma.engine.target.resolver

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


   * @param positionSource the position source, null prevents some targets from resolving
   */
  public DefaultComputationTargetResolver(final SecuritySource securitySource, final PositionSource positionSource) {
    _securitySource = securitySource;
    if (securitySource != null) {
      addResolver(ComputationTargetType.SECURITY, new SecuritySourceResolver(securitySource));
    }
    _positionSource = positionSource;
    if (positionSource != null) {
      final PositionSourceResolver resolver = new PositionSourceResolver(positionSource);
      addResolver(ComputationTargetType.PORTFOLIO, new LazyResolver.LazyPortfolioResolver(this, resolver.portfolio()));
View Full Code Here

TOP

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

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.