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 updateImpl(
51 com.liferay.portal.model.Release release, boolean merge)
52 throws com.liferay.portal.SystemException;
53
54 public com.liferay.portal.model.Release findByPrimaryKey(long releaseId)
55 throws com.liferay.portal.NoSuchReleaseException,
56 com.liferay.portal.SystemException;
57
58 public com.liferay.portal.model.Release fetchByPrimaryKey(long releaseId)
59 throws com.liferay.portal.SystemException;
60
61 public java.util.List findWithDynamicQuery(
62 com.liferay.portal.kernel.dao.DynamicQueryInitializer queryInitializer)
63 throws com.liferay.portal.SystemException;
64
65 public java.util.List findWithDynamicQuery(
66 com.liferay.portal.kernel.dao.DynamicQueryInitializer queryInitializer,
67 int begin, int end) throws com.liferay.portal.SystemException;
68
69 public java.util.List findAll() throws com.liferay.portal.SystemException;
70
71 public java.util.List findAll(int begin, int end)
72 throws com.liferay.portal.SystemException;
73
74 public java.util.List findAll(int begin, int end,
75 com.liferay.portal.kernel.util.OrderByComparator obc)
76 throws com.liferay.portal.SystemException;
77
78 public void removeAll() throws com.liferay.portal.SystemException;
79
80 public int countAll() throws com.liferay.portal.SystemException;
81 }