View Javadoc

1   package com.atlassian.plugins.rest.common.expand.parameter;
2   
3   import com.atlassian.plugins.rest.common.expand.Expandable;
4   
5   /**
6    * Represents an expand query parameter.
7    */
8   public interface ExpandParameter
9   {
10      boolean shouldExpand(Expandable expandable);
11  
12      Indexes getIndexes(Expandable expandable);
13  
14      ExpandParameter getExpandParameter(Expandable expandable);
15  
16      boolean isEmpty();
17  }