1 package com.atlassian.plugins.rest.test;
2
3 import com.atlassian.plugins.rest.common.expand.AbstractRecursiveEntityExpander;
4
5 public class FavouriteDrinkExpander extends AbstractRecursiveEntityExpander<FavouriteDrink> {
6 protected FavouriteDrink expandInternal(FavouriteDrink drink) {
7 if (drink.getName().equals("coffee")) {
8 drink.setDescription("Coffee is a brewed beverage prepared from roasted seeds, commonly called coffee beans, of the coffee plant." +
9 " Due to its caffeine content, coffee has a stimulating effect in humans. Today, coffee is one of the most popular beverages worldwide (wikipedia)");
10 }
11 return drink;
12 }
13 }