1 package com.atlassian.plugin.module;
2
3 import com.atlassian.plugin.Plugin;
4
5 /**
6 * A plugin that is managed by a container
7 *
8 * @since 2.5.0
9 */
10 public interface ContainerManagedPlugin extends Plugin {
11 /**
12 * @return The object to use to access the plugin's container
13 */
14 ContainerAccessor getContainerAccessor();
15 }