1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package atg.adapter.gsa.xml;
18
19 public class ReferenceItem
20 {
21 private String mRepositoryPath;
22 private String mItemDescriptor = null;
23 private String mItemId = null;
24
25 public ReferenceItem()
26 {
27 }
28
29 public ReferenceItem
30 (
31 String pRepositoryPath,
32 String pItemDescriptor,
33 String pItemId
34 )
35 {
36 mRepositoryPath = pRepositoryPath;
37 mItemDescriptor = pItemDescriptor;
38 mItemId = pItemId;
39 }
40
41 public String getRepositoryPath ()
42 {
43 return (mRepositoryPath);
44 }
45
46 public void setRepositoryPath (String pRepositoryPath)
47 {
48 mRepositoryPath = pRepositoryPath;
49 }
50
51 public String getItemDescriptor ()
52 {
53 return (mItemDescriptor);
54 }
55
56 public void setItemDescriptor (String pItemDescriptor)
57 {
58 mItemDescriptor = pItemDescriptor;
59 }
60
61 public String getItemId ()
62 {
63 return (mItemId);
64 }
65
66 public void setItemId (String pItemId)
67 {
68 mItemId = pItemId;
69 }
70 }