001
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
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 }