1
22
23 package com.liferay.portlet.journal.service;
24
25
51 public interface JournalContentSearchLocalService {
52 public com.liferay.portlet.journal.model.JournalContentSearch addJournalContentSearch(
53 com.liferay.portlet.journal.model.JournalContentSearch model)
54 throws com.liferay.portal.SystemException;
55
56 public java.util.List dynamicQuery(
57 com.liferay.portal.kernel.dao.DynamicQueryInitializer queryInitializer)
58 throws com.liferay.portal.SystemException;
59
60 public java.util.List dynamicQuery(
61 com.liferay.portal.kernel.dao.DynamicQueryInitializer queryInitializer,
62 int begin, int end) throws com.liferay.portal.SystemException;
63
64 public com.liferay.portlet.journal.model.JournalContentSearch updateJournalContentSearch(
65 com.liferay.portlet.journal.model.JournalContentSearch model)
66 throws com.liferay.portal.SystemException;
67
68 public void checkContentSearches(long companyId)
69 throws com.liferay.portal.SystemException,
70 com.liferay.portal.PortalException;
71
72 public void deleteArticleContentSearch(long groupId, boolean privateLayout,
73 long layoutId, java.lang.String portletId, java.lang.String articleId)
74 throws com.liferay.portal.SystemException,
75 com.liferay.portal.PortalException;
76
77 public void deleteArticleContentSearches(long groupId,
78 java.lang.String articleId) throws com.liferay.portal.SystemException;
79
80 public void deleteLayoutContentSearches(long groupId,
81 boolean privateLayout, long layoutId)
82 throws com.liferay.portal.SystemException;
83
84 public void deleteOwnerContentSearches(long groupId, boolean privateLayout)
85 throws com.liferay.portal.SystemException;
86
87 public java.util.List getArticleContentSearches()
88 throws com.liferay.portal.SystemException;
89
90 public java.util.List getArticleContentSearches(long groupId,
91 java.lang.String articleId) throws com.liferay.portal.SystemException;
92
93 public java.util.List getLayoutIds(long groupId, boolean privateLayout,
94 java.lang.String articleId) throws com.liferay.portal.SystemException;
95
96 public int getLayoutIdsCount(long groupId, boolean privateLayout,
97 java.lang.String articleId) throws com.liferay.portal.SystemException;
98
99 public com.liferay.portlet.journal.model.JournalContentSearch updateContentSearch(
100 long groupId, boolean privateLayout, long layoutId,
101 java.lang.String portletId, java.lang.String articleId)
102 throws com.liferay.portal.SystemException,
103 com.liferay.portal.PortalException;
104
105 public com.liferay.portlet.journal.model.JournalContentSearch updateContentSearch(
106 long groupId, boolean privateLayout, long layoutId,
107 java.lang.String portletId, java.lang.String articleId, boolean purge)
108 throws com.liferay.portal.SystemException,
109 com.liferay.portal.PortalException;
110
111 public java.util.List updateContentSearch(long groupId,
112 boolean privateLayout, long layoutId, java.lang.String portletId,
113 java.lang.String[] articleIds)
114 throws com.liferay.portal.SystemException,
115 com.liferay.portal.PortalException;
116 }