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