001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portlet.asset.model;
016    
017    /**
018     * <p>
019     * This class is a wrapper for {@link AssetLink}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       AssetLink
024     * @generated
025     */
026    public class AssetLinkWrapper implements AssetLink {
027            public AssetLinkWrapper(AssetLink assetLink) {
028                    _assetLink = assetLink;
029            }
030    
031            public long getPrimaryKey() {
032                    return _assetLink.getPrimaryKey();
033            }
034    
035            public void setPrimaryKey(long pk) {
036                    _assetLink.setPrimaryKey(pk);
037            }
038    
039            public long getLinkId() {
040                    return _assetLink.getLinkId();
041            }
042    
043            public void setLinkId(long linkId) {
044                    _assetLink.setLinkId(linkId);
045            }
046    
047            public long getCompanyId() {
048                    return _assetLink.getCompanyId();
049            }
050    
051            public void setCompanyId(long companyId) {
052                    _assetLink.setCompanyId(companyId);
053            }
054    
055            public long getUserId() {
056                    return _assetLink.getUserId();
057            }
058    
059            public void setUserId(long userId) {
060                    _assetLink.setUserId(userId);
061            }
062    
063            public java.lang.String getUserUuid()
064                    throws com.liferay.portal.kernel.exception.SystemException {
065                    return _assetLink.getUserUuid();
066            }
067    
068            public void setUserUuid(java.lang.String userUuid) {
069                    _assetLink.setUserUuid(userUuid);
070            }
071    
072            public java.lang.String getUserName() {
073                    return _assetLink.getUserName();
074            }
075    
076            public void setUserName(java.lang.String userName) {
077                    _assetLink.setUserName(userName);
078            }
079    
080            public java.util.Date getCreateDate() {
081                    return _assetLink.getCreateDate();
082            }
083    
084            public void setCreateDate(java.util.Date createDate) {
085                    _assetLink.setCreateDate(createDate);
086            }
087    
088            public long getEntryId1() {
089                    return _assetLink.getEntryId1();
090            }
091    
092            public void setEntryId1(long entryId1) {
093                    _assetLink.setEntryId1(entryId1);
094            }
095    
096            public long getEntryId2() {
097                    return _assetLink.getEntryId2();
098            }
099    
100            public void setEntryId2(long entryId2) {
101                    _assetLink.setEntryId2(entryId2);
102            }
103    
104            public int getType() {
105                    return _assetLink.getType();
106            }
107    
108            public void setType(int type) {
109                    _assetLink.setType(type);
110            }
111    
112            public int getWeight() {
113                    return _assetLink.getWeight();
114            }
115    
116            public void setWeight(int weight) {
117                    _assetLink.setWeight(weight);
118            }
119    
120            public com.liferay.portlet.asset.model.AssetLink toEscapedModel() {
121                    return _assetLink.toEscapedModel();
122            }
123    
124            public boolean isNew() {
125                    return _assetLink.isNew();
126            }
127    
128            public void setNew(boolean n) {
129                    _assetLink.setNew(n);
130            }
131    
132            public boolean isCachedModel() {
133                    return _assetLink.isCachedModel();
134            }
135    
136            public void setCachedModel(boolean cachedModel) {
137                    _assetLink.setCachedModel(cachedModel);
138            }
139    
140            public boolean isEscapedModel() {
141                    return _assetLink.isEscapedModel();
142            }
143    
144            public void setEscapedModel(boolean escapedModel) {
145                    _assetLink.setEscapedModel(escapedModel);
146            }
147    
148            public java.io.Serializable getPrimaryKeyObj() {
149                    return _assetLink.getPrimaryKeyObj();
150            }
151    
152            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
153                    return _assetLink.getExpandoBridge();
154            }
155    
156            public void setExpandoBridgeAttributes(
157                    com.liferay.portal.service.ServiceContext serviceContext) {
158                    _assetLink.setExpandoBridgeAttributes(serviceContext);
159            }
160    
161            public java.lang.Object clone() {
162                    return _assetLink.clone();
163            }
164    
165            public int compareTo(com.liferay.portlet.asset.model.AssetLink assetLink) {
166                    return _assetLink.compareTo(assetLink);
167            }
168    
169            public int hashCode() {
170                    return _assetLink.hashCode();
171            }
172    
173            public java.lang.String toString() {
174                    return _assetLink.toString();
175            }
176    
177            public java.lang.String toXmlString() {
178                    return _assetLink.toXmlString();
179            }
180    
181            public AssetLink getWrappedAssetLink() {
182                    return _assetLink;
183            }
184    
185            private AssetLink _assetLink;
186    }