1 package com.atlassian.plugin.impl;
2
3 import com.atlassian.plugin.Plugin;
4
5 /**
6 * @deprecated since 2.2.0, use
7 */
8 public interface DynamicPlugin extends Plugin
9 {
10
11 void setDeletable(boolean deletable);
12
13
14 void setBundled(boolean bundled);
15
16 }