001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portal.service.persistence;
016    
017    import com.liferay.portal.model.WebDAVProps;
018    
019    /**
020     * @author    Brian Wing Shun Chan
021     * @see       WebDAVPropsPersistenceImpl
022     * @see       WebDAVPropsUtil
023     * @generated
024     */
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    }