View Javadoc

1   package com.atlassian.plugin.web.descriptors;
2   
3   import com.atlassian.plugin.web.ContextProvider;
4   
5   /**
6    * Makes a plugin module aware of its Velocity context. Web modules should
7    * implement this interface if they want to modify the Velocity context used to
8    * render their content.
9    */
10  public interface ContextAware
11  {
12      /**
13       * Returns the ContextProvider that augments the context used to render a
14       * web module.
15       */
16      ContextProvider getContextProvider();
17  
18  }