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 protected ProjectSpecification expandInternal(ProjectSpecification specification) {
7 specification.setTitle("Specification Title");
8 specification.setText("Specification Text");
9 return specification;
10 }
11 }