1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * This library is free software; you can redistribute it and/or modify it under
5    * the terms of the GNU Lesser General Public License as published by the Free
6    * Software Foundation; either version 2.1 of the License, or (at your option)
7    * any later version.
8    *
9    * This library is distributed in the hope that it will be useful, but WITHOUT
10   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11   * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
12   * details.
13   */
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.AnnouncementsFlag;
20  
21  /**
22   * <a href="AnnouncementsFlagPersistence.java.html"><b><i>View Source</i></b></a>
23   *
24   * <p>
25   * ServiceBuilder generated this class. Modifications in this class will be
26   * overwritten the next time is generated.
27   * </p>
28   *
29   * @author    Brian Wing Shun Chan
30   * @see       AnnouncementsFlagPersistenceImpl
31   * @see       AnnouncementsFlagUtil
32   * @generated
33   */
34  public interface AnnouncementsFlagPersistence extends BasePersistence<AnnouncementsFlag> {
35      public void cacheResult(
36          com.liferay.portlet.announcements.model.AnnouncementsFlag announcementsFlag);
37  
38      public void cacheResult(
39          java.util.List<com.liferay.portlet.announcements.model.AnnouncementsFlag> announcementsFlags);
40  
41      public com.liferay.portlet.announcements.model.AnnouncementsFlag create(
42          long flagId);
43  
44      public com.liferay.portlet.announcements.model.AnnouncementsFlag remove(
45          long flagId)
46          throws com.liferay.portal.kernel.exception.SystemException,
47              com.liferay.portlet.announcements.NoSuchFlagException;
48  
49      public com.liferay.portlet.announcements.model.AnnouncementsFlag updateImpl(
50          com.liferay.portlet.announcements.model.AnnouncementsFlag announcementsFlag,
51          boolean merge)
52          throws com.liferay.portal.kernel.exception.SystemException;
53  
54      public com.liferay.portlet.announcements.model.AnnouncementsFlag findByPrimaryKey(
55          long flagId)
56          throws com.liferay.portal.kernel.exception.SystemException,
57              com.liferay.portlet.announcements.NoSuchFlagException;
58  
59      public com.liferay.portlet.announcements.model.AnnouncementsFlag fetchByPrimaryKey(
60          long flagId) throws com.liferay.portal.kernel.exception.SystemException;
61  
62      public java.util.List<com.liferay.portlet.announcements.model.AnnouncementsFlag> findByEntryId(
63          long entryId)
64          throws com.liferay.portal.kernel.exception.SystemException;
65  
66      public java.util.List<com.liferay.portlet.announcements.model.AnnouncementsFlag> findByEntryId(
67          long entryId, int start, int end)
68          throws com.liferay.portal.kernel.exception.SystemException;
69  
70      public java.util.List<com.liferay.portlet.announcements.model.AnnouncementsFlag> findByEntryId(
71          long entryId, 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.AnnouncementsFlag findByEntryId_First(
76          long entryId,
77          com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
78          throws com.liferay.portal.kernel.exception.SystemException,
79              com.liferay.portlet.announcements.NoSuchFlagException;
80  
81      public com.liferay.portlet.announcements.model.AnnouncementsFlag findByEntryId_Last(
82          long entryId,
83          com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
84          throws com.liferay.portal.kernel.exception.SystemException,
85              com.liferay.portlet.announcements.NoSuchFlagException;
86  
87      public com.liferay.portlet.announcements.model.AnnouncementsFlag[] findByEntryId_PrevAndNext(
88          long flagId, long entryId,
89          com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
90          throws com.liferay.portal.kernel.exception.SystemException,
91              com.liferay.portlet.announcements.NoSuchFlagException;
92  
93      public com.liferay.portlet.announcements.model.AnnouncementsFlag findByU_E_V(
94          long userId, long entryId, int value)
95          throws com.liferay.portal.kernel.exception.SystemException,
96              com.liferay.portlet.announcements.NoSuchFlagException;
97  
98      public com.liferay.portlet.announcements.model.AnnouncementsFlag fetchByU_E_V(
99          long userId, long entryId, int value)
100         throws com.liferay.portal.kernel.exception.SystemException;
101 
102     public com.liferay.portlet.announcements.model.AnnouncementsFlag fetchByU_E_V(
103         long userId, long entryId, int value, boolean retrieveFromCache)
104         throws com.liferay.portal.kernel.exception.SystemException;
105 
106     public java.util.List<com.liferay.portlet.announcements.model.AnnouncementsFlag> findAll()
107         throws com.liferay.portal.kernel.exception.SystemException;
108 
109     public java.util.List<com.liferay.portlet.announcements.model.AnnouncementsFlag> 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.AnnouncementsFlag> 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 removeByEntryId(long entryId)
119         throws com.liferay.portal.kernel.exception.SystemException;
120 
121     public void removeByU_E_V(long userId, long entryId, int value)
122         throws com.liferay.portal.kernel.exception.SystemException,
123             com.liferay.portlet.announcements.NoSuchFlagException;
124 
125     public void removeAll()
126         throws com.liferay.portal.kernel.exception.SystemException;
127 
128     public int countByEntryId(long entryId)
129         throws com.liferay.portal.kernel.exception.SystemException;
130 
131     public int countByU_E_V(long userId, long entryId, int value)
132         throws com.liferay.portal.kernel.exception.SystemException;
133 
134     public int countAll()
135         throws com.liferay.portal.kernel.exception.SystemException;
136 }