Liferay 6.0.5

com.liferay.portal.service
Class ResourceLocalServiceWrapper

java.lang.Object
  extended by com.liferay.portal.service.ResourceLocalServiceWrapper
All Implemented Interfaces:
ResourceLocalService

public class ResourceLocalServiceWrapper
extends Object
implements ResourceLocalService

This class is a wrapper for ResourceLocalService.

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

Constructor Summary
ResourceLocalServiceWrapper(ResourceLocalService resourceLocalService)
           
 
Method Summary
 void addModelResources(long companyId, long groupId, long userId, String name, long primKey, String[] communityPermissions, String[] guestPermissions)
           
 void addModelResources(long companyId, long groupId, long userId, String name, String primKey, String[] communityPermissions, String[] guestPermissions)
           
 Resource addResource(long companyId, String name, int scope, String primKey)
           
 Resource addResource(Resource resource)
          Adds the resource to the database.
 void addResources(long companyId, long groupId, long userId, String name, long primKey, boolean portletActions, boolean addCommunityPermissions, boolean addGuestPermissions)
           
 void addResources(long companyId, long groupId, long userId, String name, String primKey, boolean portletActions, boolean addCommunityPermissions, boolean addGuestPermissions)
           
 void addResources(long companyId, long groupId, String name, boolean portletActions)
           
 Resource createResource(long resourceId)
          Creates a new resource with the primary key.
 void deleteResource(long resourceId)
          Deletes the resource with the primary key from the database.
 void deleteResource(long companyId, String name, int scope, long primKey)
           
 void deleteResource(long companyId, String name, int scope, String primKey)
           
 void deleteResource(Resource resource)
          Deletes the resource from the database.
 void deleteResources(String name)
           
 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.
 long getLatestResourceId()
           
 Resource getResource(long resourceId)
          Gets the resource with the primary key.
 Resource getResource(long companyId, String name, int scope, String primKey)
           
 List<Resource> getResources()
           
 List<Resource> getResources(int start, int end)
          Gets a range of all the resources.
 int getResourcesCount()
          Gets the number of resources.
 ResourceLocalService getWrappedResourceLocalService()
           
 Resource updateResource(Resource resource)
          Updates the resource in the database.
 Resource updateResource(Resource resource, boolean merge)
          Updates the resource in the database.
 void updateResources(long companyId, long groupId, String name, long primKey, String[] communityPermissions, String[] guestPermissions)
           
 void updateResources(long companyId, long groupId, String name, String primKey, String[] communityPermissions, String[] guestPermissions)
           
 void updateResources(long companyId, String name, int scope, String primKey, String newPrimKey)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ResourceLocalServiceWrapper

public ResourceLocalServiceWrapper(ResourceLocalService resourceLocalService)
Method Detail

addResource

public Resource addResource(Resource resource)
                     throws SystemException
Adds the resource to the database. Also notifies the appropriate model listeners.

Specified by:
addResource in interface ResourceLocalService
Parameters:
resource - the resource to add
Returns:
the resource that was added
Throws:
SystemException - if a system exception occurred

createResource

public Resource createResource(long resourceId)
Creates a new resource with the primary key. Does not add the resource to the database.

Specified by:
createResource in interface ResourceLocalService
Parameters:
resourceId - the primary key for the new resource
Returns:
the new resource

deleteResource

public void deleteResource(long resourceId)
                    throws PortalException,
                           SystemException
Deletes the resource with the primary key from the database. Also notifies the appropriate model listeners.

Specified by:
deleteResource in interface ResourceLocalService
Parameters:
resourceId - the primary key of the resource to delete
Throws:
PortalException - if a resource with the primary key could not be found
SystemException - if a system exception occurred

deleteResource

public void deleteResource(Resource resource)
                    throws SystemException
Deletes the resource from the database. Also notifies the appropriate model listeners.

Specified by:
deleteResource in interface ResourceLocalService
Parameters:
resource - the resource 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 ResourceLocalService
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 ResourceLocalService
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 ResourceLocalService
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 ResourceLocalService
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

getResource

public Resource getResource(long resourceId)
                     throws PortalException,
                            SystemException
Gets the resource with the primary key.

Specified by:
getResource in interface ResourceLocalService
Parameters:
resourceId - the primary key of the resource to get
Returns:
the resource
Throws:
PortalException - if a resource with the primary key could not be found
SystemException - if a system exception occurred

getResources

public List<Resource> getResources(int start,
                                   int end)
                            throws SystemException
Gets a range of all the resources.

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:
getResources in interface ResourceLocalService
Parameters:
start - the lower bound of the range of resources to return
end - the upper bound of the range of resources to return (not inclusive)
Returns:
the range of resources
Throws:
SystemException - if a system exception occurred

getResourcesCount

public int getResourcesCount()
                      throws SystemException
Gets the number of resources.

Specified by:
getResourcesCount in interface ResourceLocalService
Returns:
the number of resources
Throws:
SystemException - if a system exception occurred

updateResource

public Resource updateResource(Resource resource)
                        throws SystemException
Updates the resource in the database. Also notifies the appropriate model listeners.

Specified by:
updateResource in interface ResourceLocalService
Parameters:
resource - the resource to update
Returns:
the resource that was updated
Throws:
SystemException - if a system exception occurred

updateResource

public Resource updateResource(Resource resource,
                               boolean merge)
                        throws SystemException
Updates the resource in the database. Also notifies the appropriate model listeners.

Specified by:
updateResource in interface ResourceLocalService
Parameters:
resource - the resource to update
merge - whether to merge the resource 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 resource that was updated
Throws:
SystemException - if a system exception occurred

addModelResources

public void addModelResources(long companyId,
                              long groupId,
                              long userId,
                              String name,
                              long primKey,
                              String[] communityPermissions,
                              String[] guestPermissions)
                       throws PortalException,
                              SystemException
Specified by:
addModelResources in interface ResourceLocalService
Throws:
PortalException
SystemException

addModelResources

public void addModelResources(long companyId,
                              long groupId,
                              long userId,
                              String name,
                              String primKey,
                              String[] communityPermissions,
                              String[] guestPermissions)
                       throws PortalException,
                              SystemException
Specified by:
addModelResources in interface ResourceLocalService
Throws:
PortalException
SystemException

addResource

public Resource addResource(long companyId,
                            String name,
                            int scope,
                            String primKey)
                     throws SystemException
Specified by:
addResource in interface ResourceLocalService
Throws:
SystemException

addResources

public void addResources(long companyId,
                         long groupId,
                         String name,
                         boolean portletActions)
                  throws PortalException,
                         SystemException
Specified by:
addResources in interface ResourceLocalService
Throws:
PortalException
SystemException

addResources

public void addResources(long companyId,
                         long groupId,
                         long userId,
                         String name,
                         long primKey,
                         boolean portletActions,
                         boolean addCommunityPermissions,
                         boolean addGuestPermissions)
                  throws PortalException,
                         SystemException
Specified by:
addResources in interface ResourceLocalService
Throws:
PortalException
SystemException

addResources

public void addResources(long companyId,
                         long groupId,
                         long userId,
                         String name,
                         String primKey,
                         boolean portletActions,
                         boolean addCommunityPermissions,
                         boolean addGuestPermissions)
                  throws PortalException,
                         SystemException
Specified by:
addResources in interface ResourceLocalService
Throws:
PortalException
SystemException

deleteResource

public void deleteResource(long companyId,
                           String name,
                           int scope,
                           long primKey)
                    throws PortalException,
                           SystemException
Specified by:
deleteResource in interface ResourceLocalService
Throws:
PortalException
SystemException

deleteResource

public void deleteResource(long companyId,
                           String name,
                           int scope,
                           String primKey)
                    throws PortalException,
                           SystemException
Specified by:
deleteResource in interface ResourceLocalService
Throws:
PortalException
SystemException

deleteResources

public void deleteResources(String name)
                     throws SystemException
Specified by:
deleteResources in interface ResourceLocalService
Throws:
SystemException

getLatestResourceId

public long getLatestResourceId()
                         throws SystemException
Specified by:
getLatestResourceId in interface ResourceLocalService
Throws:
SystemException

getResource

public Resource getResource(long companyId,
                            String name,
                            int scope,
                            String primKey)
                     throws PortalException,
                            SystemException
Specified by:
getResource in interface ResourceLocalService
Throws:
PortalException
SystemException

getResources

public List<Resource> getResources()
                            throws SystemException
Specified by:
getResources in interface ResourceLocalService
Throws:
SystemException

updateResources

public void updateResources(long companyId,
                            String name,
                            int scope,
                            String primKey,
                            String newPrimKey)
                     throws PortalException,
                            SystemException
Specified by:
updateResources in interface ResourceLocalService
Throws:
PortalException
SystemException

updateResources

public void updateResources(long companyId,
                            long groupId,
                            String name,
                            long primKey,
                            String[] communityPermissions,
                            String[] guestPermissions)
                     throws PortalException,
                            SystemException
Specified by:
updateResources in interface ResourceLocalService
Throws:
PortalException
SystemException

updateResources

public void updateResources(long companyId,
                            long groupId,
                            String name,
                            String primKey,
                            String[] communityPermissions,
                            String[] guestPermissions)
                     throws PortalException,
                            SystemException
Specified by:
updateResources in interface ResourceLocalService
Throws:
PortalException
SystemException

getWrappedResourceLocalService

public ResourceLocalService getWrappedResourceLocalService()

Liferay 6.0.5