1   package com.atlassian.plugins.codegen.modules.common;
2   
3   import com.atlassian.plugins.codegen.modules.AbstractPluginModuleProperties;
4   
5   /**
6    * @since 3.6
7    */
8   public class DownloadablePluginResourceProperties extends AbstractPluginModuleProperties
9   {
10      private boolean includeExamples;
11  
12      public static final String RESOURCE = "RESOURCE";
13  
14      public DownloadablePluginResourceProperties(Resource resource)
15      {
16          super();
17          includeExamples = false;
18          put(RESOURCE, resource);
19      }
20  
21      public Resource getResource()
22      {
23          return (Resource) get(RESOURCE);
24      }
25  }