Package com.betfair.testing.utils.cougar.enums

Examples of com.betfair.testing.utils.cougar.enums.CougarMessageProtocolResponseTypeEnum


   * @param responseContentType
   */
  public void makeRestCougarHTTPCall(HttpCallBean httpCallBean, CougarMessageProtocolRequestTypeEnum requestProtocolType, CougarMessageContentTypeEnum responseContentType) {
      AbstractCallMaker callMaker;
      callMaker =  CallMakerFactory.resolveRequestBuilderForCougarService(requestProtocolType);
      CougarMessageProtocolResponseTypeEnum messageProtocolResponseTypeEnum = CougarMessageProtocolResponseTypeEnum.valueOf(requestProtocolType.toString()+responseContentType.toString());
      httpCallBean.setResponseByEnum(messageProtocolResponseTypeEnum, callMaker.makeCall(httpCallBean, responseContentType));
  }
View Full Code Here

TOP

Related Classes of com.betfair.testing.utils.cougar.enums.CougarMessageProtocolResponseTypeEnum

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.