1
14
15 package com.liferay.portlet.announcements.service.persistence;
16
17 import com.liferay.portal.service.persistence.BasePersistence;
18
19 import com.liferay.portlet.announcements.model.AnnouncementsDelivery;
20
21
34 public interface AnnouncementsDeliveryPersistence extends BasePersistence<AnnouncementsDelivery> {
35 public void cacheResult(
36 com.liferay.portlet.announcements.model.AnnouncementsDelivery announcementsDelivery);
37
38 public void cacheResult(
39 java.util.List<com.liferay.portlet.announcements.model.AnnouncementsDelivery> announcementsDeliveries);
40
41 public com.liferay.portlet.announcements.model.AnnouncementsDelivery create(
42 long deliveryId);
43
44 public com.liferay.portlet.announcements.model.AnnouncementsDelivery remove(
45 long deliveryId)
46 throws com.liferay.portal.kernel.exception.SystemException,
47 com.liferay.portlet.announcements.NoSuchDeliveryException;
48
49 public com.liferay.portlet.announcements.model.AnnouncementsDelivery updateImpl(
50 com.liferay.portlet.announcements.model.AnnouncementsDelivery announcementsDelivery,
51 boolean merge)
52 throws com.liferay.portal.kernel.exception.SystemException;
53
54 public com.liferay.portlet.announcements.model.AnnouncementsDelivery findByPrimaryKey(
55 long deliveryId)
56 throws com.liferay.portal.kernel.exception.SystemException,
57 com.liferay.portlet.announcements.NoSuchDeliveryException;
58
59 public com.liferay.portlet.announcements.model.AnnouncementsDelivery fetchByPrimaryKey(
60 long deliveryId)
61 throws com.liferay.portal.kernel.exception.SystemException;
62
63 public java.util.List<com.liferay.portlet.announcements.model.AnnouncementsDelivery> findByUserId(
64 long userId) throws com.liferay.portal.kernel.exception.SystemException;
65
66 public java.util.List<com.liferay.portlet.announcements.model.AnnouncementsDelivery> findByUserId(
67 long userId, int start, int end)
68 throws com.liferay.portal.kernel.exception.SystemException;
69
70 public java.util.List<com.liferay.portlet.announcements.model.AnnouncementsDelivery> findByUserId(
71 long userId, int start, int end,
72 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
73 throws com.liferay.portal.kernel.exception.SystemException;
74
75 public com.liferay.portlet.announcements.model.AnnouncementsDelivery findByUserId_First(
76 long userId,
77 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
78 throws com.liferay.portal.kernel.exception.SystemException,
79 com.liferay.portlet.announcements.NoSuchDeliveryException;
80
81 public com.liferay.portlet.announcements.model.AnnouncementsDelivery findByUserId_Last(
82 long userId,
83 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
84 throws com.liferay.portal.kernel.exception.SystemException,
85 com.liferay.portlet.announcements.NoSuchDeliveryException;
86
87 public com.liferay.portlet.announcements.model.AnnouncementsDelivery[] findByUserId_PrevAndNext(
88 long deliveryId, long userId,
89 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
90 throws com.liferay.portal.kernel.exception.SystemException,
91 com.liferay.portlet.announcements.NoSuchDeliveryException;
92
93 public com.liferay.portlet.announcements.model.AnnouncementsDelivery findByU_T(
94 long userId, java.lang.String type)
95 throws com.liferay.portal.kernel.exception.SystemException,
96 com.liferay.portlet.announcements.NoSuchDeliveryException;
97
98 public com.liferay.portlet.announcements.model.AnnouncementsDelivery fetchByU_T(
99 long userId, java.lang.String type)
100 throws com.liferay.portal.kernel.exception.SystemException;
101
102 public com.liferay.portlet.announcements.model.AnnouncementsDelivery fetchByU_T(
103 long userId, java.lang.String type, boolean retrieveFromCache)
104 throws com.liferay.portal.kernel.exception.SystemException;
105
106 public java.util.List<com.liferay.portlet.announcements.model.AnnouncementsDelivery> findAll()
107 throws com.liferay.portal.kernel.exception.SystemException;
108
109 public java.util.List<com.liferay.portlet.announcements.model.AnnouncementsDelivery> findAll(
110 int start, int end)
111 throws com.liferay.portal.kernel.exception.SystemException;
112
113 public java.util.List<com.liferay.portlet.announcements.model.AnnouncementsDelivery> findAll(
114 int start, int end,
115 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
116 throws com.liferay.portal.kernel.exception.SystemException;
117
118 public void removeByUserId(long userId)
119 throws com.liferay.portal.kernel.exception.SystemException;
120
121 public void removeByU_T(long userId, java.lang.String type)
122 throws com.liferay.portal.kernel.exception.SystemException,
123 com.liferay.portlet.announcements.NoSuchDeliveryException;
124
125 public void removeAll()
126 throws com.liferay.portal.kernel.exception.SystemException;
127
128 public int countByUserId(long userId)
129 throws com.liferay.portal.kernel.exception.SystemException;
130
131 public int countByU_T(long userId, java.lang.String type)
132 throws com.liferay.portal.kernel.exception.SystemException;
133
134 public int countAll()
135 throws com.liferay.portal.kernel.exception.SystemException;
136 }