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       boolean shouldExpand(Expandable expandable);
10  
11      Indexes getIndexes(Expandable expandable);
12  
13      ExpandParameter getExpandParameter(Expandable expandable);
14  
15      boolean isEmpty();
16  }