View Javadoc
1   package com.atlassian.plugin.module;
2   
3   /**
4    * A module factory that is matched when its prefix is matched, and therefore, relies an a delegating module factory
5    * that determines the prefix somehow.
6    *
7    * @see PrefixDelegatingModuleFactory
8    * @since 2.5.0
9    */
10  public interface PrefixModuleFactory extends ModuleFactory {
11      /**
12       * @return the prefix the module factory expects to be matched to
13       */
14      String getPrefix();
15  }