View Javadoc

1   /*
2    * Copyright 2008 ATG Import Service Project
3    *
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    * 
8    *   http://www.apache.org/licenses/LICENSE-2.0
9    * 
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
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  }