Liferay 6.0.5

com.liferay.portal.service
Class WebDAVPropsLocalServiceWrapper

java.lang.Object
  extended by com.liferay.portal.service.WebDAVPropsLocalServiceWrapper
All Implemented Interfaces:
WebDAVPropsLocalService

public class WebDAVPropsLocalServiceWrapper
extends Object
implements WebDAVPropsLocalService

This class is a wrapper for WebDAVPropsLocalService.

See Also:
WebDAVPropsLocalService
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time is generated.

Constructor Summary
WebDAVPropsLocalServiceWrapper(WebDAVPropsLocalService webDAVPropsLocalService)
           
 
Method Summary
 WebDAVProps addWebDAVProps(WebDAVProps webDAVProps)
          Adds the web d a v props to the database.
 WebDAVProps createWebDAVProps(long webDavPropsId)
          Creates a new web d a v props with the primary key.
 void deleteWebDAVProps(long webDavPropsId)
          Deletes the web d a v props with the primary key from the database.
 void deleteWebDAVProps(String className, long classPK)
           
 void deleteWebDAVProps(WebDAVProps webDAVProps)
          Deletes the web d a v props from the database.
 List dynamicQuery(DynamicQuery dynamicQuery)
          Performs a dynamic query on the database and returns the matching rows.
 List dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
          Performs a dynamic query on the database and returns a range of the matching rows.
 List dynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator)
          Performs a dynamic query on the database and returns an ordered range of the matching rows.
 long dynamicQueryCount(DynamicQuery dynamicQuery)
          Counts the number of rows that match the dynamic query.
 WebDAVProps getWebDAVProps(long webDavPropsId)
          Gets the web d a v props with the primary key.
 WebDAVProps getWebDAVProps(long companyId, String className, long classPK)
           
 List<WebDAVProps> getWebDAVPropses(int start, int end)
          Gets a range of all the web d a v propses.
 int getWebDAVPropsesCount()
          Gets the number of web d a v propses.
 WebDAVPropsLocalService getWrappedWebDAVPropsLocalService()
           
 void storeWebDAVProps(WebDAVProps webDavProps)
           
 WebDAVProps updateWebDAVProps(WebDAVProps webDAVProps)
          Updates the web d a v props in the database.
 WebDAVProps updateWebDAVProps(WebDAVProps webDAVProps, boolean merge)
          Updates the web d a v props in the database.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

WebDAVPropsLocalServiceWrapper

public WebDAVPropsLocalServiceWrapper(WebDAVPropsLocalService webDAVPropsLocalService)
Method Detail

addWebDAVProps

public WebDAVProps addWebDAVProps(WebDAVProps webDAVProps)
                           throws SystemException
Adds the web d a v props to the database. Also notifies the appropriate model listeners.

Specified by:
addWebDAVProps in interface WebDAVPropsLocalService
Parameters:
webDAVProps - the web d a v props to add
Returns:
the web d a v props that was added
Throws:
SystemException - if a system exception occurred

createWebDAVProps

public WebDAVProps createWebDAVProps(long webDavPropsId)
Creates a new web d a v props with the primary key. Does not add the web d a v props to the database.

Specified by:
createWebDAVProps in interface WebDAVPropsLocalService
Parameters:
webDavPropsId - the primary key for the new web d a v props
Returns:
the new web d a v props

deleteWebDAVProps

public void deleteWebDAVProps(long webDavPropsId)
                       throws PortalException,
                              SystemException
Deletes the web d a v props with the primary key from the database. Also notifies the appropriate model listeners.

Specified by:
deleteWebDAVProps in interface WebDAVPropsLocalService
Parameters:
webDavPropsId - the primary key of the web d a v props to delete
Throws:
PortalException - if a web d a v props with the primary key could not be found
SystemException - if a system exception occurred

deleteWebDAVProps

public void deleteWebDAVProps(WebDAVProps webDAVProps)
                       throws SystemException
Deletes the web d a v props from the database. Also notifies the appropriate model listeners.

Specified by:
deleteWebDAVProps in interface WebDAVPropsLocalService
Parameters:
webDAVProps - the web d a v props to delete
Throws:
SystemException - if a system exception occurred

dynamicQuery

public List dynamicQuery(DynamicQuery dynamicQuery)
                  throws SystemException
Performs a dynamic query on the database and returns the matching rows.

Specified by:
dynamicQuery in interface WebDAVPropsLocalService
Parameters:
dynamicQuery - the dynamic query to search with
Returns:
the matching rows
Throws:
SystemException - if a system exception occurred

dynamicQuery

public List dynamicQuery(DynamicQuery dynamicQuery,
                         int start,
                         int end)
                  throws SystemException
Performs a dynamic query on the database and returns a range of the matching rows.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Specified by:
dynamicQuery in interface WebDAVPropsLocalService
Parameters:
dynamicQuery - the dynamic query to search with
start - the lower bound of the range of model instances to return
end - the upper bound of the range of model instances to return (not inclusive)
Returns:
the range of matching rows
Throws:
SystemException - if a system exception occurred

dynamicQuery

public List dynamicQuery(DynamicQuery dynamicQuery,
                         int start,
                         int end,
                         OrderByComparator orderByComparator)
                  throws SystemException
Performs a dynamic query on the database and returns an ordered range of the matching rows.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Specified by:
dynamicQuery in interface WebDAVPropsLocalService
Parameters:
dynamicQuery - the dynamic query to search with
start - the lower bound of the range of model instances to return
end - the upper bound of the range of model instances to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching rows
Throws:
SystemException - if a system exception occurred

dynamicQueryCount

public long dynamicQueryCount(DynamicQuery dynamicQuery)
                       throws SystemException
Counts the number of rows that match the dynamic query.

Specified by:
dynamicQueryCount in interface WebDAVPropsLocalService
Parameters:
dynamicQuery - the dynamic query to search with
Returns:
the number of rows that match the dynamic query
Throws:
SystemException - if a system exception occurred

getWebDAVProps

public WebDAVProps getWebDAVProps(long webDavPropsId)
                           throws PortalException,
                                  SystemException
Gets the web d a v props with the primary key.

Specified by:
getWebDAVProps in interface WebDAVPropsLocalService
Parameters:
webDavPropsId - the primary key of the web d a v props to get
Returns:
the web d a v props
Throws:
PortalException - if a web d a v props with the primary key could not be found
SystemException - if a system exception occurred

getWebDAVPropses

public List<WebDAVProps> getWebDAVPropses(int start,
                                          int end)
                                   throws SystemException
Gets a range of all the web d a v propses.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Specified by:
getWebDAVPropses in interface WebDAVPropsLocalService
Parameters:
start - the lower bound of the range of web d a v propses to return
end - the upper bound of the range of web d a v propses to return (not inclusive)
Returns:
the range of web d a v propses
Throws:
SystemException - if a system exception occurred

getWebDAVPropsesCount

public int getWebDAVPropsesCount()
                          throws SystemException
Gets the number of web d a v propses.

Specified by:
getWebDAVPropsesCount in interface WebDAVPropsLocalService
Returns:
the number of web d a v propses
Throws:
SystemException - if a system exception occurred

updateWebDAVProps

public WebDAVProps updateWebDAVProps(WebDAVProps webDAVProps)
                              throws SystemException
Updates the web d a v props in the database. Also notifies the appropriate model listeners.

Specified by:
updateWebDAVProps in interface WebDAVPropsLocalService
Parameters:
webDAVProps - the web d a v props to update
Returns:
the web d a v props that was updated
Throws:
SystemException - if a system exception occurred

updateWebDAVProps

public WebDAVProps updateWebDAVProps(WebDAVProps webDAVProps,
                                     boolean merge)
                              throws SystemException
Updates the web d a v props in the database. Also notifies the appropriate model listeners.

Specified by:
updateWebDAVProps in interface WebDAVPropsLocalService
Parameters:
webDAVProps - the web d a v props to update
merge - whether to merge the web d a v props with the current session. See BatchSession.update(com.liferay.portal.kernel.dao.orm.Session, com.liferay.portal.model.BaseModel, boolean) for an explanation.
Returns:
the web d a v props that was updated
Throws:
SystemException - if a system exception occurred

deleteWebDAVProps

public void deleteWebDAVProps(String className,
                              long classPK)
                       throws SystemException
Specified by:
deleteWebDAVProps in interface WebDAVPropsLocalService
Throws:
SystemException

getWebDAVProps

public WebDAVProps getWebDAVProps(long companyId,
                                  String className,
                                  long classPK)
                           throws SystemException
Specified by:
getWebDAVProps in interface WebDAVPropsLocalService
Throws:
SystemException

storeWebDAVProps

public void storeWebDAVProps(WebDAVProps webDavProps)
                      throws PortalException,
                             SystemException
Specified by:
storeWebDAVProps in interface WebDAVPropsLocalService
Throws:
PortalException
SystemException

getWrappedWebDAVPropsLocalService

public WebDAVPropsLocalService getWrappedWebDAVPropsLocalService()

Liferay 6.0.5