1
22
23 package com.liferay.portlet.tags.service;
24
25
26
50 public interface TagsAssetService {
51 public void deleteAsset(long assetId)
52 throws java.rmi.RemoteException, com.liferay.portal.PortalException,
53 com.liferay.portal.SystemException;
54
55 public com.liferay.portlet.tags.model.TagsAsset getAsset(long assetId)
56 throws java.rmi.RemoteException, com.liferay.portal.PortalException,
57 com.liferay.portal.SystemException;
58
59 public java.lang.String getAssetsRSS(long groupId, long[] classNameIds,
60 long[] entryIds, long[] notEntryIds, boolean andOperator,
61 java.lang.String orderByCol1, java.lang.String orderByCol2,
62 java.lang.String orderByType1, java.lang.String orderByType2,
63 boolean excludeZeroViewCount, java.util.Date publishDate,
64 java.util.Date expirationDate, int max, java.lang.String type,
65 double version, java.lang.String displayStyle,
66 java.lang.String feedURL, java.lang.String entryURL)
67 throws java.rmi.RemoteException, com.liferay.portal.PortalException,
68 com.liferay.portal.SystemException;
69
70 public com.liferay.portlet.tags.model.TagsAssetType[] getAssetTypes(
71 java.lang.String languageId) throws java.rmi.RemoteException;
72
73 public com.liferay.portlet.tags.model.TagsAssetDisplay[] getCompanyAssetDisplays(
74 long companyId, int start, int end, java.lang.String languageId)
75 throws java.rmi.RemoteException, com.liferay.portal.SystemException;
76
77 public java.util.List<com.liferay.portlet.tags.model.TagsAsset> getCompanyAssets(
78 long companyId, int start, int end)
79 throws java.rmi.RemoteException, com.liferay.portal.SystemException;
80
81 public int getCompanyAssetsCount(long companyId)
82 throws java.rmi.RemoteException, com.liferay.portal.SystemException;
83
84 public java.lang.String getCompanyAssetsRSS(long companyId, int max,
85 java.lang.String type, double version, java.lang.String displayStyle,
86 java.lang.String feedURL, java.lang.String entryURL)
87 throws java.rmi.RemoteException, com.liferay.portal.PortalException,
88 com.liferay.portal.SystemException;
89
90 public com.liferay.portlet.tags.model.TagsAsset incrementViewCounter(
91 java.lang.String className, long classPK)
92 throws java.rmi.RemoteException, com.liferay.portal.SystemException;
93
94 public com.liferay.portlet.tags.model.TagsAssetDisplay[] searchAssetDisplays(
95 long companyId, java.lang.String portletId, java.lang.String keywords,
96 java.lang.String languageId, int start, int end)
97 throws java.rmi.RemoteException, com.liferay.portal.SystemException;
98
99 public int searchAssetDisplaysCount(long companyId,
100 java.lang.String portletId, java.lang.String keywords,
101 java.lang.String languageId)
102 throws java.rmi.RemoteException, com.liferay.portal.SystemException;
103
104 public com.liferay.portlet.tags.model.TagsAsset updateAsset(long groupId,
105 java.lang.String className, long classPK,
106 java.lang.String[] entryNames, java.util.Date startDate,
107 java.util.Date endDate, java.util.Date publishDate,
108 java.util.Date expirationDate, java.lang.String mimeType,
109 java.lang.String title, java.lang.String description,
110 java.lang.String summary, java.lang.String url, int height, int width,
111 java.lang.Integer priority)
112 throws java.rmi.RemoteException, com.liferay.portal.PortalException,
113 com.liferay.portal.SystemException;
114 }