1
22
23 package com.liferay.portal.service.persistence;
24
25
31 public interface WebDAVPropsPersistence {
32 public com.liferay.portal.model.WebDAVProps create(long webDavPropsId);
33
34 public com.liferay.portal.model.WebDAVProps remove(long webDavPropsId)
35 throws com.liferay.portal.SystemException,
36 com.liferay.portal.NoSuchWebDAVPropsException;
37
38 public com.liferay.portal.model.WebDAVProps remove(
39 com.liferay.portal.model.WebDAVProps webDAVProps)
40 throws com.liferay.portal.SystemException;
41
42 public com.liferay.portal.model.WebDAVProps update(
43 com.liferay.portal.model.WebDAVProps webDAVProps)
44 throws com.liferay.portal.SystemException;
45
46 public com.liferay.portal.model.WebDAVProps update(
47 com.liferay.portal.model.WebDAVProps webDAVProps, boolean merge)
48 throws com.liferay.portal.SystemException;
49
50 public com.liferay.portal.model.WebDAVProps updateImpl(
51 com.liferay.portal.model.WebDAVProps webDAVProps, boolean merge)
52 throws com.liferay.portal.SystemException;
53
54 public com.liferay.portal.model.WebDAVProps findByPrimaryKey(
55 long webDavPropsId)
56 throws com.liferay.portal.SystemException,
57 com.liferay.portal.NoSuchWebDAVPropsException;
58
59 public com.liferay.portal.model.WebDAVProps fetchByPrimaryKey(
60 long webDavPropsId) throws com.liferay.portal.SystemException;
61
62 public com.liferay.portal.model.WebDAVProps findByC_C(long classNameId,
63 long classPK)
64 throws com.liferay.portal.SystemException,
65 com.liferay.portal.NoSuchWebDAVPropsException;
66
67 public com.liferay.portal.model.WebDAVProps fetchByC_C(long classNameId,
68 long classPK) throws com.liferay.portal.SystemException;
69
70 public java.util.List findWithDynamicQuery(
71 com.liferay.portal.kernel.dao.DynamicQueryInitializer queryInitializer)
72 throws com.liferay.portal.SystemException;
73
74 public java.util.List findWithDynamicQuery(
75 com.liferay.portal.kernel.dao.DynamicQueryInitializer queryInitializer,
76 int begin, int end) throws com.liferay.portal.SystemException;
77
78 public java.util.List findAll() throws com.liferay.portal.SystemException;
79
80 public java.util.List findAll(int begin, int end)
81 throws com.liferay.portal.SystemException;
82
83 public java.util.List findAll(int begin, int end,
84 com.liferay.portal.kernel.util.OrderByComparator obc)
85 throws com.liferay.portal.SystemException;
86
87 public void removeByC_C(long classNameId, long classPK)
88 throws com.liferay.portal.SystemException,
89 com.liferay.portal.NoSuchWebDAVPropsException;
90
91 public void removeAll() throws com.liferay.portal.SystemException;
92
93 public int countByC_C(long classNameId, long classPK)
94 throws com.liferay.portal.SystemException;
95
96 public int countAll() throws com.liferay.portal.SystemException;
97 }