Package com.opengamma.master.security.impl

Examples of com.opengamma.master.security.impl.RemoteSecurityMaster


    return _positionMaster;
  }

  public SecurityMaster getSecurityMaster() {
    if (_securityMaster == null) {
      _securityMaster = new RemoteSecurityMaster(_targetProvider.getSecurityMaster());
    }
    return _securityMaster;
  }
View Full Code Here


    return new RemoteFinancialSecuritySource(uri);
  }

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

TOP

Related Classes of com.opengamma.master.security.impl.RemoteSecurityMaster

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.