Package com.opengamma.master.position.impl

Examples of com.opengamma.master.position.impl.RemotePositionMaster


    return _portfolioMaster;
  }

  public PositionMaster getPositionMaster() {
    if (_positionMaster == null) {
      _positionMaster = new RemotePositionMaster(_targetProvider.getPositionMaster());
    }
    return _positionMaster;
  }
View Full Code Here


    return new RemotePortfolioMaster(uri);
  }

  public RemotePositionMaster getPositionMaster(final String name) {
    final URI uri = _components.getComponentInfo(PositionMaster.class, name).getUri();
    return new RemotePositionMaster(uri);
  }
View Full Code Here

TOP

Related Classes of com.opengamma.master.position.impl.RemotePositionMaster

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.