1 package com.atlassian.plugin.web.descriptors;
2
3 import com.atlassian.plugin.web.Condition;
4
5 /**
6 * A simple interface implemented by any descriptors that support display
7 * conditions.
8 *
9 * @since 2.5.0
10 */
11 public interface ConditionalDescriptor
12 {
13 Condition getCondition();
14 }