Package com.opengamma.core.obligor.definition

Examples of com.opengamma.core.obligor.definition.Obligor


      _obligorExtractor = new CdsRedCodeExtractor<>(new CdsObligorExtractor(organizationSource));
    }

    public String extractOrElse(CreditDefaultSwapSecurity cds, String alternative) {

      Obligor obligor = _obligorExtractor.extract(cds);
      return obligor != null ? obligor.getSector().name() : alternative;
    }
View Full Code Here


      };
    }

    public String extractOrElse(CreditDefaultSwapOptionSecurity cdsOption, String alternative) {

      Obligor obligor = _obligorExtractor.extract(cdsOption);
      return obligor != null ? obligor.getSector().name() : alternative;
    }
View Full Code Here

      final CreditRatingFitch fitchCreditRating,
      final CreditRatingMoodys moodysCreditRating,
      final CreditRatingStandardAndPoors standardAndPoorsCreditRating,
      final boolean hasDefaulted) {
   
    setObligor(new Obligor(obligorTicker,
        obligorShortName,
        obligorREDCode,
        compositeRating,
        impliedRating,
        moodysCreditRating,
View Full Code Here

TOP

Related Classes of com.opengamma.core.obligor.definition.Obligor

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.