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.wiki.service.persistence;
16  
17  import com.liferay.portal.service.persistence.BasePersistence;
18  
19  import com.liferay.portlet.wiki.model.WikiPageResource;
20  
21  /**
22   * <a href="WikiPageResourcePersistence.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       WikiPageResourcePersistenceImpl
31   * @see       WikiPageResourceUtil
32   * @generated
33   */
34  public interface WikiPageResourcePersistence extends BasePersistence<WikiPageResource> {
35      public void cacheResult(
36          com.liferay.portlet.wiki.model.WikiPageResource wikiPageResource);
37  
38      public void cacheResult(
39          java.util.List<com.liferay.portlet.wiki.model.WikiPageResource> wikiPageResources);
40  
41      public com.liferay.portlet.wiki.model.WikiPageResource create(
42          long resourcePrimKey);
43  
44      public com.liferay.portlet.wiki.model.WikiPageResource remove(
45          long resourcePrimKey)
46          throws com.liferay.portal.kernel.exception.SystemException,
47              com.liferay.portlet.wiki.NoSuchPageResourceException;
48  
49      public com.liferay.portlet.wiki.model.WikiPageResource updateImpl(
50          com.liferay.portlet.wiki.model.WikiPageResource wikiPageResource,
51          boolean merge)
52          throws com.liferay.portal.kernel.exception.SystemException;
53  
54      public com.liferay.portlet.wiki.model.WikiPageResource findByPrimaryKey(
55          long resourcePrimKey)
56          throws com.liferay.portal.kernel.exception.SystemException,
57              com.liferay.portlet.wiki.NoSuchPageResourceException;
58  
59      public com.liferay.portlet.wiki.model.WikiPageResource fetchByPrimaryKey(
60          long resourcePrimKey)
61          throws com.liferay.portal.kernel.exception.SystemException;
62  
63      public com.liferay.portlet.wiki.model.WikiPageResource findByN_T(
64          long nodeId, java.lang.String title)
65          throws com.liferay.portal.kernel.exception.SystemException,
66              com.liferay.portlet.wiki.NoSuchPageResourceException;
67  
68      public com.liferay.portlet.wiki.model.WikiPageResource fetchByN_T(
69          long nodeId, java.lang.String title)
70          throws com.liferay.portal.kernel.exception.SystemException;
71  
72      public com.liferay.portlet.wiki.model.WikiPageResource fetchByN_T(
73          long nodeId, java.lang.String title, boolean retrieveFromCache)
74          throws com.liferay.portal.kernel.exception.SystemException;
75  
76      public java.util.List<com.liferay.portlet.wiki.model.WikiPageResource> findAll()
77          throws com.liferay.portal.kernel.exception.SystemException;
78  
79      public java.util.List<com.liferay.portlet.wiki.model.WikiPageResource> findAll(
80          int start, int end)
81          throws com.liferay.portal.kernel.exception.SystemException;
82  
83      public java.util.List<com.liferay.portlet.wiki.model.WikiPageResource> findAll(
84          int start, int end, com.liferay.portal.kernel.util.OrderByComparator obc)
85          throws com.liferay.portal.kernel.exception.SystemException;
86  
87      public void removeByN_T(long nodeId, java.lang.String title)
88          throws com.liferay.portal.kernel.exception.SystemException,
89              com.liferay.portlet.wiki.NoSuchPageResourceException;
90  
91      public void removeAll()
92          throws com.liferay.portal.kernel.exception.SystemException;
93  
94      public int countByN_T(long nodeId, java.lang.String title)
95          throws com.liferay.portal.kernel.exception.SystemException;
96  
97      public int countAll()
98          throws com.liferay.portal.kernel.exception.SystemException;
99  }