1
22
23 package com.liferay.portal.service.persistence;
24
25
26
39 public interface WebDAVPropsPersistence extends BasePersistence {
40 public void cacheResult(com.liferay.portal.model.WebDAVProps webDAVProps);
41
42 public void cacheResult(
43 java.util.List<com.liferay.portal.model.WebDAVProps> webDAVPropses);
44
45 public void clearCache();
46
47 public com.liferay.portal.model.WebDAVProps create(long webDavPropsId);
48
49 public com.liferay.portal.model.WebDAVProps remove(long webDavPropsId)
50 throws com.liferay.portal.NoSuchWebDAVPropsException,
51 com.liferay.portal.SystemException;
52
53 public com.liferay.portal.model.WebDAVProps remove(
54 com.liferay.portal.model.WebDAVProps webDAVProps)
55 throws com.liferay.portal.SystemException;
56
57
60 public com.liferay.portal.model.WebDAVProps update(
61 com.liferay.portal.model.WebDAVProps webDAVProps)
62 throws com.liferay.portal.SystemException;
63
64
76 public com.liferay.portal.model.WebDAVProps update(
77 com.liferay.portal.model.WebDAVProps webDAVProps, boolean merge)
78 throws com.liferay.portal.SystemException;
79
80 public com.liferay.portal.model.WebDAVProps updateImpl(
81 com.liferay.portal.model.WebDAVProps webDAVProps, boolean merge)
82 throws com.liferay.portal.SystemException;
83
84 public com.liferay.portal.model.WebDAVProps findByPrimaryKey(
85 long webDavPropsId)
86 throws com.liferay.portal.NoSuchWebDAVPropsException,
87 com.liferay.portal.SystemException;
88
89 public com.liferay.portal.model.WebDAVProps fetchByPrimaryKey(
90 long webDavPropsId) throws com.liferay.portal.SystemException;
91
92 public com.liferay.portal.model.WebDAVProps findByC_C(long classNameId,
93 long classPK)
94 throws com.liferay.portal.NoSuchWebDAVPropsException,
95 com.liferay.portal.SystemException;
96
97 public com.liferay.portal.model.WebDAVProps fetchByC_C(long classNameId,
98 long classPK) throws com.liferay.portal.SystemException;
99
100 public com.liferay.portal.model.WebDAVProps fetchByC_C(long classNameId,
101 long classPK, boolean retrieveFromCache)
102 throws com.liferay.portal.SystemException;
103
104 public java.util.List<Object> findWithDynamicQuery(
105 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
106 throws com.liferay.portal.SystemException;
107
108 public java.util.List<Object> findWithDynamicQuery(
109 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
110 int end) throws com.liferay.portal.SystemException;
111
112 public java.util.List<com.liferay.portal.model.WebDAVProps> findAll()
113 throws com.liferay.portal.SystemException;
114
115 public java.util.List<com.liferay.portal.model.WebDAVProps> findAll(
116 int start, int end) throws com.liferay.portal.SystemException;
117
118 public java.util.List<com.liferay.portal.model.WebDAVProps> findAll(
119 int start, int end, com.liferay.portal.kernel.util.OrderByComparator obc)
120 throws com.liferay.portal.SystemException;
121
122 public void removeByC_C(long classNameId, long classPK)
123 throws com.liferay.portal.NoSuchWebDAVPropsException,
124 com.liferay.portal.SystemException;
125
126 public void removeAll() throws com.liferay.portal.SystemException;
127
128 public int countByC_C(long classNameId, long classPK)
129 throws com.liferay.portal.SystemException;
130
131 public int countAll() throws com.liferay.portal.SystemException;
132 }