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 ImportFailedItem
20  {
21    public static final int M_ACTION_ADD = 0;
22    public static final int M_ACTION_UPDATE = 1;
23    public static final int M_ACTION_DELETE = 2;
24    
25    private int mAction;
26    
27    public int getAction ()
28    {
29      return (mAction);  
30    }
31    
32    public void setAction (int pAction)
33    {
34      mAction = pAction;
35    }
36    
37    private String mItemDescriptor = null;
38    
39    public String getItemDescriptor ()
40    {
41      return (mItemDescriptor);  
42    }
43    
44    public void setItemDescriptor (String pItemDescriptor)
45    {
46      mItemDescriptor = pItemDescriptor;
47    }
48    
49    private String mItemId = null;
50  
51    public String getItemId ()
52    {
53      return (mItemId);  
54    }
55    
56    public void setItemId (String pItemId)
57    {
58      mItemId = pItemId;
59    }
60  
61    private String mMessage = null;
62  
63    public String getMessage ()
64    {
65      return (mMessage);  
66    }
67    
68    public void setMesssage (String pMessage)
69    {
70      mMessage = pMessage;
71    }
72  
73    private String mBatchFilename = null;
74  
75    public String getBatchFilename ()
76    {
77      return (mBatchFilename);  
78    }
79    
80    public void setBatchFilename (String pBatchFilename)
81    {
82      mBatchFilename = pBatchFilename;
83    }
84  
85    public ImportFailedItem ()
86    {
87    }
88  }