1
14
15 package com.liferay.portal.service.persistence;
16
17 import com.liferay.portal.model.WebDAVProps;
18
19
32 public interface WebDAVPropsPersistence extends BasePersistence<WebDAVProps> {
33 public void cacheResult(com.liferay.portal.model.WebDAVProps webDAVProps);
34
35 public void cacheResult(
36 java.util.List<com.liferay.portal.model.WebDAVProps> webDAVPropses);
37
38 public com.liferay.portal.model.WebDAVProps create(long webDavPropsId);
39
40 public com.liferay.portal.model.WebDAVProps remove(long webDavPropsId)
41 throws com.liferay.portal.NoSuchWebDAVPropsException,
42 com.liferay.portal.kernel.exception.SystemException;
43
44 public com.liferay.portal.model.WebDAVProps updateImpl(
45 com.liferay.portal.model.WebDAVProps webDAVProps, boolean merge)
46 throws com.liferay.portal.kernel.exception.SystemException;
47
48 public com.liferay.portal.model.WebDAVProps findByPrimaryKey(
49 long webDavPropsId)
50 throws com.liferay.portal.NoSuchWebDAVPropsException,
51 com.liferay.portal.kernel.exception.SystemException;
52
53 public com.liferay.portal.model.WebDAVProps fetchByPrimaryKey(
54 long webDavPropsId)
55 throws com.liferay.portal.kernel.exception.SystemException;
56
57 public com.liferay.portal.model.WebDAVProps findByC_C(long classNameId,
58 long classPK)
59 throws com.liferay.portal.NoSuchWebDAVPropsException,
60 com.liferay.portal.kernel.exception.SystemException;
61
62 public com.liferay.portal.model.WebDAVProps fetchByC_C(long classNameId,
63 long classPK)
64 throws com.liferay.portal.kernel.exception.SystemException;
65
66 public com.liferay.portal.model.WebDAVProps fetchByC_C(long classNameId,
67 long classPK, boolean retrieveFromCache)
68 throws com.liferay.portal.kernel.exception.SystemException;
69
70 public java.util.List<com.liferay.portal.model.WebDAVProps> findAll()
71 throws com.liferay.portal.kernel.exception.SystemException;
72
73 public java.util.List<com.liferay.portal.model.WebDAVProps> findAll(
74 int start, int end)
75 throws com.liferay.portal.kernel.exception.SystemException;
76
77 public java.util.List<com.liferay.portal.model.WebDAVProps> findAll(
78 int start, int end, com.liferay.portal.kernel.util.OrderByComparator obc)
79 throws com.liferay.portal.kernel.exception.SystemException;
80
81 public void removeByC_C(long classNameId, long classPK)
82 throws com.liferay.portal.NoSuchWebDAVPropsException,
83 com.liferay.portal.kernel.exception.SystemException;
84
85 public void removeAll()
86 throws com.liferay.portal.kernel.exception.SystemException;
87
88 public int countByC_C(long classNameId, long classPK)
89 throws com.liferay.portal.kernel.exception.SystemException;
90
91 public int countAll()
92 throws com.liferay.portal.kernel.exception.SystemException;
93 }