1   package com.atlassian.plugins.rest.test;
2   
3   import com.atlassian.plugins.rest.common.expand.AbstractRecursiveEntityExpander;
4   
5   public class ProjectSpecificationExpander extends AbstractRecursiveEntityExpander<ProjectSpecification>
6   {
7       protected ProjectSpecification expandInternal(ProjectSpecification specification)
8       {
9           specification.setTitle("Specification Title");
10          specification.setText("Specification Text");
11          return specification;
12      }
13  }