1
22
23 package com.liferay.portal.service.persistence;
24
25
31 public interface ReleasePersistence extends BasePersistence {
32 public void cacheResult(com.liferay.portal.model.Release release);
33
34 public void cacheResult(
35 java.util.List<com.liferay.portal.model.Release> releases);
36
37 public void clearCache();
38
39 public com.liferay.portal.model.Release create(long releaseId);
40
41 public com.liferay.portal.model.Release remove(long releaseId)
42 throws com.liferay.portal.NoSuchReleaseException,
43 com.liferay.portal.SystemException;
44
45 public com.liferay.portal.model.Release remove(
46 com.liferay.portal.model.Release release)
47 throws com.liferay.portal.SystemException;
48
49
52 public com.liferay.portal.model.Release update(
53 com.liferay.portal.model.Release release)
54 throws com.liferay.portal.SystemException;
55
56
69 public com.liferay.portal.model.Release update(
70 com.liferay.portal.model.Release release, boolean merge)
71 throws com.liferay.portal.SystemException;
72
73 public com.liferay.portal.model.Release updateImpl(
74 com.liferay.portal.model.Release release, boolean merge)
75 throws com.liferay.portal.SystemException;
76
77 public com.liferay.portal.model.Release findByPrimaryKey(long releaseId)
78 throws com.liferay.portal.NoSuchReleaseException,
79 com.liferay.portal.SystemException;
80
81 public com.liferay.portal.model.Release fetchByPrimaryKey(long releaseId)
82 throws com.liferay.portal.SystemException;
83
84 public java.util.List<Object> findWithDynamicQuery(
85 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
86 throws com.liferay.portal.SystemException;
87
88 public java.util.List<Object> findWithDynamicQuery(
89 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
90 int end) throws com.liferay.portal.SystemException;
91
92 public java.util.List<com.liferay.portal.model.Release> findAll()
93 throws com.liferay.portal.SystemException;
94
95 public java.util.List<com.liferay.portal.model.Release> findAll(int start,
96 int end) throws com.liferay.portal.SystemException;
97
98 public java.util.List<com.liferay.portal.model.Release> findAll(int start,
99 int end, com.liferay.portal.kernel.util.OrderByComparator obc)
100 throws com.liferay.portal.SystemException;
101
102 public void removeAll() throws com.liferay.portal.SystemException;
103
104 public int countAll() throws com.liferay.portal.SystemException;
105 }