Package recommender.core.error

Examples of recommender.core.error.BadRequestOrResponseException


  public E parseRecommendationEntity(Reader reader) throws BadRequestOrResponseException {
    try {
      final RecommendationContainer<E, R> container = this.mapper.readValue(reader, createJavaType());
      return container.getEntity();
    } catch (IOException e) {
      throw new BadRequestOrResponseException(e);
    }
  }
View Full Code Here


  public SortedSet<R> parseRecommendationResultList(Reader reader) throws BadRequestOrResponseException {
    try {
      final RecommendationContainer<E, R> container = this.mapper.readValue(reader, createJavaType());
      return container.getRecommendations();
    } catch (IOException e) {
      throw new BadRequestOrResponseException(e);
    }
  }
View Full Code Here

TOP

Related Classes of recommender.core.error.BadRequestOrResponseException

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.