Package edu.drexel.goodwin.cpd.domain

Examples of edu.drexel.goodwin.cpd.domain.Interest


  public Set<Interest> getRandomInterests(Random random) {
    Set<Interest> interests = new HashSet<Interest>();
    int count = random.nextInt(13);
    for (int i = 0; i < count; i++) {
      int number = random.nextInt(13);
      Interest interest = Interest.findInterest((long) number);
      if (interest != null && !interests.contains(interest)) {
        interests.add(interest);
      }
    }
    return interests;
View Full Code Here


        return "redirect:/interest/" + interest.getId();       
    }

  @RequestMapping(value = "/interest/form", method = RequestMethod.GET)   
    public String createForm(ModelMap modelMap) {   
        modelMap.addAttribute("interest", new Interest());       
        return "interest/create";       
    }
View Full Code Here

TOP

Related Classes of edu.drexel.goodwin.cpd.domain.Interest

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.