1 package com.atlassian.plugin.servlet;
2
3
4
5
6
7 class PluginResource
8 {
9 private final String moduleCompleteKey;
10 private final String resourceName;
11
12
13
14
15
16
17 public PluginResource(String moduleCompleteKey, String resourceName)
18 {
19 this.moduleCompleteKey = moduleCompleteKey;
20 this.resourceName = resourceName;
21 }
22
23 public String getModuleCompleteKey()
24 {
25 return moduleCompleteKey;
26 }
27
28 public String getResourceName()
29 {
30 return resourceName;
31 }
32
33
34 public String toString()
35 {
36 return "[moduleCompleteKey=" + moduleCompleteKey + ", resourceName=" + resourceName + "]";
37 }
38 }