1 package com.atlassian.plugin.event.events;
2
3 import com.atlassian.annotations.PublicApi;
4 import com.atlassian.plugin.ModuleDescriptor;
5
6
7
8
9
10
11
12 @PublicApi
13 public class PluginModulePersistentEvent extends PluginModuleEvent {
14 private final boolean persistent;
15
16 public PluginModulePersistentEvent(final ModuleDescriptor<?> module, final boolean persistent) {
17 super(module);
18 this.persistent = persistent;
19 }
20
21
22
23
24
25
26 public boolean isPersistent() {
27 return persistent;
28 }
29 }