Package com.airbnb.suggest.model

Examples of com.airbnb.suggest.model.Place


  @GET
  @Path("suggest")
  public Place suggest() {
    Collections.shuffle(places);
    Place place = places.get(0);
    logger.info(place.toString());
    return place;
  }
View Full Code Here

TOP

Related Classes of com.airbnb.suggest.model.Place

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.