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