001
014
015 package com.liferay.portal.service.persistence;
016
017 import com.liferay.portal.model.WebDAVProps;
018
019
025 public interface WebDAVPropsPersistence extends BasePersistence<WebDAVProps> {
026 public void cacheResult(com.liferay.portal.model.WebDAVProps webDAVProps);
027
028 public void cacheResult(
029 java.util.List<com.liferay.portal.model.WebDAVProps> webDAVPropses);
030
031 public com.liferay.portal.model.WebDAVProps create(long webDavPropsId);
032
033 public com.liferay.portal.model.WebDAVProps remove(long webDavPropsId)
034 throws com.liferay.portal.NoSuchWebDAVPropsException,
035 com.liferay.portal.kernel.exception.SystemException;
036
037 public com.liferay.portal.model.WebDAVProps updateImpl(
038 com.liferay.portal.model.WebDAVProps webDAVProps, boolean merge)
039 throws com.liferay.portal.kernel.exception.SystemException;
040
041 public com.liferay.portal.model.WebDAVProps findByPrimaryKey(
042 long webDavPropsId)
043 throws com.liferay.portal.NoSuchWebDAVPropsException,
044 com.liferay.portal.kernel.exception.SystemException;
045
046 public com.liferay.portal.model.WebDAVProps fetchByPrimaryKey(
047 long webDavPropsId)
048 throws com.liferay.portal.kernel.exception.SystemException;
049
050 public com.liferay.portal.model.WebDAVProps findByC_C(long classNameId,
051 long classPK)
052 throws com.liferay.portal.NoSuchWebDAVPropsException,
053 com.liferay.portal.kernel.exception.SystemException;
054
055 public com.liferay.portal.model.WebDAVProps fetchByC_C(long classNameId,
056 long classPK)
057 throws com.liferay.portal.kernel.exception.SystemException;
058
059 public com.liferay.portal.model.WebDAVProps fetchByC_C(long classNameId,
060 long classPK, boolean retrieveFromCache)
061 throws com.liferay.portal.kernel.exception.SystemException;
062
063 public java.util.List<com.liferay.portal.model.WebDAVProps> findAll()
064 throws com.liferay.portal.kernel.exception.SystemException;
065
066 public java.util.List<com.liferay.portal.model.WebDAVProps> findAll(
067 int start, int end)
068 throws com.liferay.portal.kernel.exception.SystemException;
069
070 public java.util.List<com.liferay.portal.model.WebDAVProps> findAll(
071 int start, int end,
072 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
073 throws com.liferay.portal.kernel.exception.SystemException;
074
075 public void removeByC_C(long classNameId, long classPK)
076 throws com.liferay.portal.NoSuchWebDAVPropsException,
077 com.liferay.portal.kernel.exception.SystemException;
078
079 public void removeAll()
080 throws com.liferay.portal.kernel.exception.SystemException;
081
082 public int countByC_C(long classNameId, long classPK)
083 throws com.liferay.portal.kernel.exception.SystemException;
084
085 public int countAll()
086 throws com.liferay.portal.kernel.exception.SystemException;
087 }