1
22
23 package com.liferay.portlet.shopping.service.persistence;
24
25 import com.liferay.portal.PortalException;
26 import com.liferay.portal.SystemException;
27 import com.liferay.portal.kernel.annotation.Propagation;
28 import com.liferay.portal.kernel.annotation.Transactional;
29
30
36 @Transactional(rollbackFor = {
37 PortalException.class, SystemException.class})
38 public interface ShoppingCategoryPersistence {
39 public com.liferay.portlet.shopping.model.ShoppingCategory create(
40 long categoryId);
41
42 public com.liferay.portlet.shopping.model.ShoppingCategory remove(
43 long categoryId)
44 throws com.liferay.portal.SystemException,
45 com.liferay.portlet.shopping.NoSuchCategoryException;
46
47 public com.liferay.portlet.shopping.model.ShoppingCategory remove(
48 com.liferay.portlet.shopping.model.ShoppingCategory shoppingCategory)
49 throws com.liferay.portal.SystemException;
50
51
54 public com.liferay.portlet.shopping.model.ShoppingCategory update(
55 com.liferay.portlet.shopping.model.ShoppingCategory shoppingCategory)
56 throws com.liferay.portal.SystemException;
57
58
71 public com.liferay.portlet.shopping.model.ShoppingCategory update(
72 com.liferay.portlet.shopping.model.ShoppingCategory shoppingCategory,
73 boolean merge) throws com.liferay.portal.SystemException;
74
75 public com.liferay.portlet.shopping.model.ShoppingCategory updateImpl(
76 com.liferay.portlet.shopping.model.ShoppingCategory shoppingCategory,
77 boolean merge) throws com.liferay.portal.SystemException;
78
79 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
80 public com.liferay.portlet.shopping.model.ShoppingCategory findByPrimaryKey(
81 long categoryId)
82 throws com.liferay.portal.SystemException,
83 com.liferay.portlet.shopping.NoSuchCategoryException;
84
85 public com.liferay.portlet.shopping.model.ShoppingCategory fetchByPrimaryKey(
86 long categoryId) throws com.liferay.portal.SystemException;
87
88 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
89 public java.util.List<com.liferay.portlet.shopping.model.ShoppingCategory> findByGroupId(
90 long groupId) throws com.liferay.portal.SystemException;
91
92 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
93 public java.util.List<com.liferay.portlet.shopping.model.ShoppingCategory> findByGroupId(
94 long groupId, int start, int end)
95 throws com.liferay.portal.SystemException;
96
97 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
98 public java.util.List<com.liferay.portlet.shopping.model.ShoppingCategory> findByGroupId(
99 long groupId, int start, int end,
100 com.liferay.portal.kernel.util.OrderByComparator obc)
101 throws com.liferay.portal.SystemException;
102
103 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
104 public com.liferay.portlet.shopping.model.ShoppingCategory findByGroupId_First(
105 long groupId, com.liferay.portal.kernel.util.OrderByComparator obc)
106 throws com.liferay.portal.SystemException,
107 com.liferay.portlet.shopping.NoSuchCategoryException;
108
109 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
110 public com.liferay.portlet.shopping.model.ShoppingCategory findByGroupId_Last(
111 long groupId, com.liferay.portal.kernel.util.OrderByComparator obc)
112 throws com.liferay.portal.SystemException,
113 com.liferay.portlet.shopping.NoSuchCategoryException;
114
115 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
116 public com.liferay.portlet.shopping.model.ShoppingCategory[] findByGroupId_PrevAndNext(
117 long categoryId, long groupId,
118 com.liferay.portal.kernel.util.OrderByComparator obc)
119 throws com.liferay.portal.SystemException,
120 com.liferay.portlet.shopping.NoSuchCategoryException;
121
122 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
123 public java.util.List<com.liferay.portlet.shopping.model.ShoppingCategory> findByG_P(
124 long groupId, long parentCategoryId)
125 throws com.liferay.portal.SystemException;
126
127 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
128 public java.util.List<com.liferay.portlet.shopping.model.ShoppingCategory> findByG_P(
129 long groupId, long parentCategoryId, int start, int end)
130 throws com.liferay.portal.SystemException;
131
132 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
133 public java.util.List<com.liferay.portlet.shopping.model.ShoppingCategory> findByG_P(
134 long groupId, long parentCategoryId, int start, int end,
135 com.liferay.portal.kernel.util.OrderByComparator obc)
136 throws com.liferay.portal.SystemException;
137
138 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
139 public com.liferay.portlet.shopping.model.ShoppingCategory findByG_P_First(
140 long groupId, long parentCategoryId,
141 com.liferay.portal.kernel.util.OrderByComparator obc)
142 throws com.liferay.portal.SystemException,
143 com.liferay.portlet.shopping.NoSuchCategoryException;
144
145 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
146 public com.liferay.portlet.shopping.model.ShoppingCategory findByG_P_Last(
147 long groupId, long parentCategoryId,
148 com.liferay.portal.kernel.util.OrderByComparator obc)
149 throws com.liferay.portal.SystemException,
150 com.liferay.portlet.shopping.NoSuchCategoryException;
151
152 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
153 public com.liferay.portlet.shopping.model.ShoppingCategory[] findByG_P_PrevAndNext(
154 long categoryId, long groupId, long parentCategoryId,
155 com.liferay.portal.kernel.util.OrderByComparator obc)
156 throws com.liferay.portal.SystemException,
157 com.liferay.portlet.shopping.NoSuchCategoryException;
158
159 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
160 public java.util.List<Object> findWithDynamicQuery(
161 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
162 throws com.liferay.portal.SystemException;
163
164 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
165 public java.util.List<Object> findWithDynamicQuery(
166 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
167 int end) throws com.liferay.portal.SystemException;
168
169 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
170 public java.util.List<com.liferay.portlet.shopping.model.ShoppingCategory> findAll()
171 throws com.liferay.portal.SystemException;
172
173 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
174 public java.util.List<com.liferay.portlet.shopping.model.ShoppingCategory> findAll(
175 int start, int end) throws com.liferay.portal.SystemException;
176
177 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
178 public java.util.List<com.liferay.portlet.shopping.model.ShoppingCategory> findAll(
179 int start, int end, com.liferay.portal.kernel.util.OrderByComparator obc)
180 throws com.liferay.portal.SystemException;
181
182 public void removeByGroupId(long groupId)
183 throws com.liferay.portal.SystemException;
184
185 public void removeByG_P(long groupId, long parentCategoryId)
186 throws com.liferay.portal.SystemException;
187
188 public void removeAll() throws com.liferay.portal.SystemException;
189
190 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
191 public int countByGroupId(long groupId)
192 throws com.liferay.portal.SystemException;
193
194 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
195 public int countByG_P(long groupId, long parentCategoryId)
196 throws com.liferay.portal.SystemException;
197
198 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
199 public int countAll() throws com.liferay.portal.SystemException;
200
201 public void registerListener(
202 com.liferay.portal.model.ModelListener listener);
203
204 public void unregisterListener(
205 com.liferay.portal.model.ModelListener listener);
206 }