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.asset.model;
16  
17  
18  /**
19   * <a href="AssetTagSoap.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 AssetTag}.
28   * </p>
29   *
30   * @author    Brian Wing Shun Chan
31   * @see       AssetTag
32   * @generated
33   */
34  public class AssetTagWrapper implements AssetTag {
35      public AssetTagWrapper(AssetTag assetTag) {
36          _assetTag = assetTag;
37      }
38  
39      public long getPrimaryKey() {
40          return _assetTag.getPrimaryKey();
41      }
42  
43      public void setPrimaryKey(long pk) {
44          _assetTag.setPrimaryKey(pk);
45      }
46  
47      public long getTagId() {
48          return _assetTag.getTagId();
49      }
50  
51      public void setTagId(long tagId) {
52          _assetTag.setTagId(tagId);
53      }
54  
55      public long getGroupId() {
56          return _assetTag.getGroupId();
57      }
58  
59      public void setGroupId(long groupId) {
60          _assetTag.setGroupId(groupId);
61      }
62  
63      public long getCompanyId() {
64          return _assetTag.getCompanyId();
65      }
66  
67      public void setCompanyId(long companyId) {
68          _assetTag.setCompanyId(companyId);
69      }
70  
71      public long getUserId() {
72          return _assetTag.getUserId();
73      }
74  
75      public void setUserId(long userId) {
76          _assetTag.setUserId(userId);
77      }
78  
79      public java.lang.String getUserUuid()
80          throws com.liferay.portal.kernel.exception.SystemException {
81          return _assetTag.getUserUuid();
82      }
83  
84      public void setUserUuid(java.lang.String userUuid) {
85          _assetTag.setUserUuid(userUuid);
86      }
87  
88      public java.lang.String getUserName() {
89          return _assetTag.getUserName();
90      }
91  
92      public void setUserName(java.lang.String userName) {
93          _assetTag.setUserName(userName);
94      }
95  
96      public java.util.Date getCreateDate() {
97          return _assetTag.getCreateDate();
98      }
99  
100     public void setCreateDate(java.util.Date createDate) {
101         _assetTag.setCreateDate(createDate);
102     }
103 
104     public java.util.Date getModifiedDate() {
105         return _assetTag.getModifiedDate();
106     }
107 
108     public void setModifiedDate(java.util.Date modifiedDate) {
109         _assetTag.setModifiedDate(modifiedDate);
110     }
111 
112     public java.lang.String getName() {
113         return _assetTag.getName();
114     }
115 
116     public void setName(java.lang.String name) {
117         _assetTag.setName(name);
118     }
119 
120     public int getAssetCount() {
121         return _assetTag.getAssetCount();
122     }
123 
124     public void setAssetCount(int assetCount) {
125         _assetTag.setAssetCount(assetCount);
126     }
127 
128     public com.liferay.portlet.asset.model.AssetTag toEscapedModel() {
129         return _assetTag.toEscapedModel();
130     }
131 
132     public boolean isNew() {
133         return _assetTag.isNew();
134     }
135 
136     public boolean setNew(boolean n) {
137         return _assetTag.setNew(n);
138     }
139 
140     public boolean isCachedModel() {
141         return _assetTag.isCachedModel();
142     }
143 
144     public void setCachedModel(boolean cachedModel) {
145         _assetTag.setCachedModel(cachedModel);
146     }
147 
148     public boolean isEscapedModel() {
149         return _assetTag.isEscapedModel();
150     }
151 
152     public void setEscapedModel(boolean escapedModel) {
153         _assetTag.setEscapedModel(escapedModel);
154     }
155 
156     public java.io.Serializable getPrimaryKeyObj() {
157         return _assetTag.getPrimaryKeyObj();
158     }
159 
160     public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
161         return _assetTag.getExpandoBridge();
162     }
163 
164     public void setExpandoBridgeAttributes(
165         com.liferay.portal.service.ServiceContext serviceContext) {
166         _assetTag.setExpandoBridgeAttributes(serviceContext);
167     }
168 
169     public java.lang.Object clone() {
170         return _assetTag.clone();
171     }
172 
173     public int compareTo(com.liferay.portlet.asset.model.AssetTag assetTag) {
174         return _assetTag.compareTo(assetTag);
175     }
176 
177     public int hashCode() {
178         return _assetTag.hashCode();
179     }
180 
181     public java.lang.String toString() {
182         return _assetTag.toString();
183     }
184 
185     public java.lang.String toXmlString() {
186         return _assetTag.toXmlString();
187     }
188 
189     public AssetTag getWrappedAssetTag() {
190         return _assetTag;
191     }
192 
193     private AssetTag _assetTag;
194 }