001
014
015 package com.liferay.portlet.social.util;
016
017 import com.liferay.portal.kernel.util.ResourceBundleLoader;
018 import com.liferay.portal.language.LanguageResources;
019 import com.liferay.portal.service.ServiceContext;
020 import com.liferay.portlet.social.model.BaseSocialActivityInterpreter;
021 import com.liferay.portlet.social.model.SocialActivity;
022 import com.liferay.portlet.social.model.SocialActivityFeedEntry;
023
024
027 public class PortalActivityInterpreter extends BaseSocialActivityInterpreter {
028
029 @Override
030 public String[] getClassNames() {
031 return _CLASS_NAMES;
032 }
033
034 @Override
035 protected SocialActivityFeedEntry doInterpret(
036 SocialActivity activity, ServiceContext serviceContext)
037 throws Exception {
038
039 return null;
040 }
041
042 @Override
043 protected ResourceBundleLoader getResourceBundleLoader() {
044 return LanguageResources.RESOURCE_BUNDLE_LOADER;
045 }
046
047 private static final String[] _CLASS_NAMES =
048 {PortalActivityInterpreter.class.getName()};
049
050 }