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.portal.service.persistence;
16  
17  import com.liferay.portal.model.Release;
18  
19  /**
20   * <a href="ReleasePersistence.java.html"><b><i>View Source</i></b></a>
21   *
22   * <p>
23   * ServiceBuilder generated this class. Modifications in this class will be
24   * overwritten the next time is generated.
25   * </p>
26   *
27   * @author    Brian Wing Shun Chan
28   * @see       ReleasePersistenceImpl
29   * @see       ReleaseUtil
30   * @generated
31   */
32  public interface ReleasePersistence extends BasePersistence<Release> {
33      public void cacheResult(com.liferay.portal.model.Release release);
34  
35      public void cacheResult(
36          java.util.List<com.liferay.portal.model.Release> releases);
37  
38      public com.liferay.portal.model.Release create(long releaseId);
39  
40      public com.liferay.portal.model.Release remove(long releaseId)
41          throws com.liferay.portal.NoSuchReleaseException,
42              com.liferay.portal.kernel.exception.SystemException;
43  
44      public com.liferay.portal.model.Release updateImpl(
45          com.liferay.portal.model.Release release, boolean merge)
46          throws com.liferay.portal.kernel.exception.SystemException;
47  
48      public com.liferay.portal.model.Release findByPrimaryKey(long releaseId)
49          throws com.liferay.portal.NoSuchReleaseException,
50              com.liferay.portal.kernel.exception.SystemException;
51  
52      public com.liferay.portal.model.Release fetchByPrimaryKey(long releaseId)
53          throws com.liferay.portal.kernel.exception.SystemException;
54  
55      public com.liferay.portal.model.Release findByServletContextName(
56          java.lang.String servletContextName)
57          throws com.liferay.portal.NoSuchReleaseException,
58              com.liferay.portal.kernel.exception.SystemException;
59  
60      public com.liferay.portal.model.Release fetchByServletContextName(
61          java.lang.String servletContextName)
62          throws com.liferay.portal.kernel.exception.SystemException;
63  
64      public com.liferay.portal.model.Release fetchByServletContextName(
65          java.lang.String servletContextName, boolean retrieveFromCache)
66          throws com.liferay.portal.kernel.exception.SystemException;
67  
68      public java.util.List<com.liferay.portal.model.Release> findAll()
69          throws com.liferay.portal.kernel.exception.SystemException;
70  
71      public java.util.List<com.liferay.portal.model.Release> findAll(int start,
72          int end) throws com.liferay.portal.kernel.exception.SystemException;
73  
74      public java.util.List<com.liferay.portal.model.Release> findAll(int start,
75          int end,
76          com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
77          throws com.liferay.portal.kernel.exception.SystemException;
78  
79      public void removeByServletContextName(java.lang.String servletContextName)
80          throws com.liferay.portal.NoSuchReleaseException,
81              com.liferay.portal.kernel.exception.SystemException;
82  
83      public void removeAll()
84          throws com.liferay.portal.kernel.exception.SystemException;
85  
86      public int countByServletContextName(java.lang.String servletContextName)
87          throws com.liferay.portal.kernel.exception.SystemException;
88  
89      public int countAll()
90          throws com.liferay.portal.kernel.exception.SystemException;
91  }