1   package com.atlassian.plugins.codegen.modules.common.licensing;
2   
3   import com.atlassian.plugins.codegen.modules.BasicClassModuleProperties;
4   
5   /**
6    * @since 3.7
7    */
8   public class LicensingProperties extends BasicClassModuleProperties
9   {
10      private String licenseServletPath = "";
11      private String helloWorldServletPath = "";
12      
13      public LicensingProperties()
14      {
15          super();
16      }
17      
18      public LicensingProperties(String fqClass)
19      {
20          super(fqClass);
21      }
22  
23      public String getLicenseServletPath()
24      {
25          return licenseServletPath;
26      }
27  
28      public void setLicenseServletPath(String licenseServletPath)
29      {
30          this.licenseServletPath = licenseServletPath;
31          setProperty("LICENSE_SERVLET_PATH", licenseServletPath);
32      }
33  
34      public String getHelloWorldServletPath()
35      {
36          return helloWorldServletPath;
37      }
38  
39      public void setHelloWorldServletPath(String helloWorldServletPath)
40      {
41          this.helloWorldServletPath = helloWorldServletPath;
42          setProperty("HELLO_WORLD_SERVLET_PATH", helloWorldServletPath);
43      }
44  }