1
22
23 package com.liferay.portal.service.persistence;
24
25
31 public interface ReleasePersistence {
32 public com.liferay.portal.model.Release create(long releaseId);
33
34 public com.liferay.portal.model.Release remove(long releaseId)
35 throws com.liferay.portal.NoSuchReleaseException,
36 com.liferay.portal.SystemException;
37
38 public com.liferay.portal.model.Release remove(
39 com.liferay.portal.model.Release release)
40 throws com.liferay.portal.SystemException;
41
42 public com.liferay.portal.model.Release update(
43 com.liferay.portal.model.Release release)
44 throws com.liferay.portal.SystemException;
45
46 public com.liferay.portal.model.Release update(
47 com.liferay.portal.model.Release release, boolean merge)
48 throws com.liferay.portal.SystemException;
49
50 public com.liferay.portal.model.Release findByPrimaryKey(long releaseId)
51 throws com.liferay.portal.NoSuchReleaseException,
52 com.liferay.portal.SystemException;
53
54 public com.liferay.portal.model.Release fetchByPrimaryKey(long releaseId)
55 throws com.liferay.portal.SystemException;
56
57 public java.util.List findWithDynamicQuery(
58 com.liferay.portal.kernel.dao.DynamicQueryInitializer queryInitializer)
59 throws com.liferay.portal.SystemException;
60
61 public java.util.List findWithDynamicQuery(
62 com.liferay.portal.kernel.dao.DynamicQueryInitializer queryInitializer,
63 int begin, int end) throws com.liferay.portal.SystemException;
64
65 public java.util.List findAll() throws com.liferay.portal.SystemException;
66
67 public java.util.List findAll(int begin, int end)
68 throws com.liferay.portal.SystemException;
69
70 public java.util.List findAll(int begin, int end,
71 com.liferay.portal.kernel.util.OrderByComparator obc)
72 throws com.liferay.portal.SystemException;
73
74 public void removeAll() throws com.liferay.portal.SystemException;
75
76 public int countAll() throws com.liferay.portal.SystemException;
77 }