1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * This library is free software; you can redistribute it and/or modify it under
5    * the terms of the GNU Lesser General Public License as published by the Free
6    * Software Foundation; either version 2.1 of the License, or (at your option)
7    * any later version.
8    *
9    * This library is distributed in the hope that it will be useful, but WITHOUT
10   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11   * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
12   * details.
13   */
14  
15  package com.liferay.portlet.shopping.model;
16  
17  
18  /**
19   * <a href="ShoppingCategorySoap.java.html"><b><i>View Source</i></b></a>
20   *
21   * <p>
22   * ServiceBuilder generated this class. Modifications in this class will be
23   * overwritten the next time is generated.
24   * </p>
25   *
26   * <p>
27   * This class is a wrapper for {@link ShoppingCategory}.
28   * </p>
29   *
30   * @author    Brian Wing Shun Chan
31   * @see       ShoppingCategory
32   * @generated
33   */
34  public class ShoppingCategoryWrapper implements ShoppingCategory {
35      public ShoppingCategoryWrapper(ShoppingCategory shoppingCategory) {
36          _shoppingCategory = shoppingCategory;
37      }
38  
39      public long getPrimaryKey() {
40          return _shoppingCategory.getPrimaryKey();
41      }
42  
43      public void setPrimaryKey(long pk) {
44          _shoppingCategory.setPrimaryKey(pk);
45      }
46  
47      public long getCategoryId() {
48          return _shoppingCategory.getCategoryId();
49      }
50  
51      public void setCategoryId(long categoryId) {
52          _shoppingCategory.setCategoryId(categoryId);
53      }
54  
55      public long getGroupId() {
56          return _shoppingCategory.getGroupId();
57      }
58  
59      public void setGroupId(long groupId) {
60          _shoppingCategory.setGroupId(groupId);
61      }
62  
63      public long getCompanyId() {
64          return _shoppingCategory.getCompanyId();
65      }
66  
67      public void setCompanyId(long companyId) {
68          _shoppingCategory.setCompanyId(companyId);
69      }
70  
71      public long getUserId() {
72          return _shoppingCategory.getUserId();
73      }
74  
75      public void setUserId(long userId) {
76          _shoppingCategory.setUserId(userId);
77      }
78  
79      public java.lang.String getUserUuid()
80          throws com.liferay.portal.kernel.exception.SystemException {
81          return _shoppingCategory.getUserUuid();
82      }
83  
84      public void setUserUuid(java.lang.String userUuid) {
85          _shoppingCategory.setUserUuid(userUuid);
86      }
87  
88      public java.lang.String getUserName() {
89          return _shoppingCategory.getUserName();
90      }
91  
92      public void setUserName(java.lang.String userName) {
93          _shoppingCategory.setUserName(userName);
94      }
95  
96      public java.util.Date getCreateDate() {
97          return _shoppingCategory.getCreateDate();
98      }
99  
100     public void setCreateDate(java.util.Date createDate) {
101         _shoppingCategory.setCreateDate(createDate);
102     }
103 
104     public java.util.Date getModifiedDate() {
105         return _shoppingCategory.getModifiedDate();
106     }
107 
108     public void setModifiedDate(java.util.Date modifiedDate) {
109         _shoppingCategory.setModifiedDate(modifiedDate);
110     }
111 
112     public long getParentCategoryId() {
113         return _shoppingCategory.getParentCategoryId();
114     }
115 
116     public void setParentCategoryId(long parentCategoryId) {
117         _shoppingCategory.setParentCategoryId(parentCategoryId);
118     }
119 
120     public java.lang.String getName() {
121         return _shoppingCategory.getName();
122     }
123 
124     public void setName(java.lang.String name) {
125         _shoppingCategory.setName(name);
126     }
127 
128     public java.lang.String getDescription() {
129         return _shoppingCategory.getDescription();
130     }
131 
132     public void setDescription(java.lang.String description) {
133         _shoppingCategory.setDescription(description);
134     }
135 
136     public com.liferay.portlet.shopping.model.ShoppingCategory toEscapedModel() {
137         return _shoppingCategory.toEscapedModel();
138     }
139 
140     public boolean isNew() {
141         return _shoppingCategory.isNew();
142     }
143 
144     public boolean setNew(boolean n) {
145         return _shoppingCategory.setNew(n);
146     }
147 
148     public boolean isCachedModel() {
149         return _shoppingCategory.isCachedModel();
150     }
151 
152     public void setCachedModel(boolean cachedModel) {
153         _shoppingCategory.setCachedModel(cachedModel);
154     }
155 
156     public boolean isEscapedModel() {
157         return _shoppingCategory.isEscapedModel();
158     }
159 
160     public void setEscapedModel(boolean escapedModel) {
161         _shoppingCategory.setEscapedModel(escapedModel);
162     }
163 
164     public java.io.Serializable getPrimaryKeyObj() {
165         return _shoppingCategory.getPrimaryKeyObj();
166     }
167 
168     public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
169         return _shoppingCategory.getExpandoBridge();
170     }
171 
172     public void setExpandoBridgeAttributes(
173         com.liferay.portal.service.ServiceContext serviceContext) {
174         _shoppingCategory.setExpandoBridgeAttributes(serviceContext);
175     }
176 
177     public java.lang.Object clone() {
178         return _shoppingCategory.clone();
179     }
180 
181     public int compareTo(
182         com.liferay.portlet.shopping.model.ShoppingCategory shoppingCategory) {
183         return _shoppingCategory.compareTo(shoppingCategory);
184     }
185 
186     public int hashCode() {
187         return _shoppingCategory.hashCode();
188     }
189 
190     public java.lang.String toString() {
191         return _shoppingCategory.toString();
192     }
193 
194     public java.lang.String toXmlString() {
195         return _shoppingCategory.toXmlString();
196     }
197 
198     public boolean isRoot() {
199         return _shoppingCategory.isRoot();
200     }
201 
202     public ShoppingCategory getWrappedShoppingCategory() {
203         return _shoppingCategory;
204     }
205 
206     private ShoppingCategory _shoppingCategory;
207 }