001    /**
002     * Copyright (c) 2000-2011 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
013     */
014    
015    package com.liferay.portlet.social.model.impl;
016    
017    import com.liferay.portal.kernel.exception.SystemException;
018    import com.liferay.portal.kernel.util.Validator;
019    import com.liferay.portlet.asset.model.AssetEntry;
020    import com.liferay.portlet.asset.service.AssetEntryLocalServiceUtil;
021    
022    /**
023     * @author Brian Wing Shun Chan
024     * @author Zsolt Berentey
025     */
026    public class SocialActivityImpl extends SocialActivityBaseImpl {
027    
028            public AssetEntry getAssetEntry() throws SystemException {
029                    if ((_assetEntry == null) && Validator.isNotNull(getClassName()) &&
030                            (getClassPK() > 0)) {
031    
032                            _assetEntry = AssetEntryLocalServiceUtil.fetchEntry(
033                                    getClassName(), getClassPK());
034                    }
035    
036                    return _assetEntry;
037            }
038    
039            public void setAssetEntry(AssetEntry assetEntry) {
040                    _assetEntry = assetEntry;
041            }
042    
043            private AssetEntry _assetEntry;
044    
045    }