1
22
23 package com.liferay.portal.service.persistence;
24
25
26
39 public interface ReleasePersistence extends BasePersistence {
40 public void cacheResult(com.liferay.portal.model.Release release);
41
42 public void cacheResult(
43 java.util.List<com.liferay.portal.model.Release> releases);
44
45 public void clearCache();
46
47 public com.liferay.portal.model.Release create(long releaseId);
48
49 public com.liferay.portal.model.Release remove(long releaseId)
50 throws com.liferay.portal.NoSuchReleaseException,
51 com.liferay.portal.SystemException;
52
53 public com.liferay.portal.model.Release remove(
54 com.liferay.portal.model.Release release)
55 throws com.liferay.portal.SystemException;
56
57
60 public com.liferay.portal.model.Release update(
61 com.liferay.portal.model.Release release)
62 throws com.liferay.portal.SystemException;
63
64
76 public com.liferay.portal.model.Release update(
77 com.liferay.portal.model.Release release, boolean merge)
78 throws com.liferay.portal.SystemException;
79
80 public com.liferay.portal.model.Release updateImpl(
81 com.liferay.portal.model.Release release, boolean merge)
82 throws com.liferay.portal.SystemException;
83
84 public com.liferay.portal.model.Release findByPrimaryKey(long releaseId)
85 throws com.liferay.portal.NoSuchReleaseException,
86 com.liferay.portal.SystemException;
87
88 public com.liferay.portal.model.Release fetchByPrimaryKey(long releaseId)
89 throws com.liferay.portal.SystemException;
90
91 public java.util.List<Object> findWithDynamicQuery(
92 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
93 throws com.liferay.portal.SystemException;
94
95 public java.util.List<Object> findWithDynamicQuery(
96 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
97 int end) throws com.liferay.portal.SystemException;
98
99 public java.util.List<com.liferay.portal.model.Release> findAll()
100 throws com.liferay.portal.SystemException;
101
102 public java.util.List<com.liferay.portal.model.Release> findAll(int start,
103 int end) throws com.liferay.portal.SystemException;
104
105 public java.util.List<com.liferay.portal.model.Release> findAll(int start,
106 int end, com.liferay.portal.kernel.util.OrderByComparator obc)
107 throws com.liferay.portal.SystemException;
108
109 public void removeAll() throws com.liferay.portal.SystemException;
110
111 public int countAll() throws com.liferay.portal.SystemException;
112 }