Liferay 6.1.2-ce-ga3

com.liferay.portlet.asset.service
Class AssetTagLocalServiceWrapper

java.lang.Object
  extended by com.liferay.portlet.asset.service.AssetTagLocalServiceWrapper
All Implemented Interfaces:
BaseLocalService, PersistedModelLocalService, ServiceWrapper<AssetTagLocalService>, AssetTagLocalService

public class AssetTagLocalServiceWrapper
extends Object
implements AssetTagLocalService, ServiceWrapper<AssetTagLocalService>

This class is a wrapper for AssetTagLocalService.

See Also:
AssetTagLocalService

Constructor Summary
AssetTagLocalServiceWrapper(AssetTagLocalService assetTagLocalService)
           
 
Method Summary
 void addAssetEntryAssetTag(long entryId, AssetTag assetTag)
           
 void addAssetEntryAssetTag(long entryId, long tagId)
           
 void addAssetEntryAssetTags(long entryId, List<AssetTag> AssetTags)
           
 void addAssetEntryAssetTags(long entryId, long[] tagIds)
           
 AssetTag addAssetTag(AssetTag assetTag)
          Adds the asset tag to the database.
 AssetTag addTag(long userId, String name, String[] tagProperties, ServiceContext serviceContext)
           
 void addTagResources(AssetTag tag, boolean addGroupPermissions, boolean addGuestPermissions)
           
 void addTagResources(AssetTag tag, String[] groupPermissions, String[] guestPermissions)
           
 void checkTags(long userId, long groupId, String[] names)
           
 void clearAssetEntryAssetTags(long entryId)
           
 AssetTag createAssetTag(long tagId)
          Creates a new asset tag with the primary key.
 AssetTag decrementAssetCount(long tagId, long classNameId)
           
 void deleteAssetEntryAssetTag(long entryId, AssetTag assetTag)
           
 void deleteAssetEntryAssetTag(long entryId, long tagId)
           
 void deleteAssetEntryAssetTags(long entryId, List<AssetTag> AssetTags)
           
 void deleteAssetEntryAssetTags(long entryId, long[] tagIds)
           
 AssetTag deleteAssetTag(AssetTag assetTag)
          Deletes the asset tag from the database.
 AssetTag deleteAssetTag(long tagId)
          Deletes the asset tag with the primary key from the database.
 void deleteTag(AssetTag tag)
           
 void deleteTag(long tagId)
           
 DynamicQuery dynamicQuery()
           
 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)
          Returns the number of rows that match the dynamic query.
 AssetTag fetchAssetTag(long tagId)
           
 List<AssetTag> getAssetEntryAssetTags(long entryId)
           
 List<AssetTag> getAssetEntryAssetTags(long entryId, int start, int end)
           
 List<AssetTag> getAssetEntryAssetTags(long entryId, int start, int end, OrderByComparator orderByComparator)
           
 int getAssetEntryAssetTagsCount(long entryId)
           
 AssetTag getAssetTag(long tagId)
          Returns the asset tag with the primary key.
 List<AssetTag> getAssetTags(int start, int end)
          Returns a range of all the asset tags.
 int getAssetTagsCount()
          Returns the number of asset tags.
 String getBeanIdentifier()
          Returns the Spring bean ID for this bean.
 List<AssetTag> getEntryTags(long entryId)
           
 List<AssetTag> getGroupsTags(long[] groupIds)
           
 List<AssetTag> getGroupTags(long groupId)
           
 List<AssetTag> getGroupTags(long groupId, int start, int end)
           
 int getGroupTagsCount(long groupId)
           
 PersistedModel getPersistedModel(Serializable primaryKeyObj)
           
 List<AssetTag> getSocialActivityCounterOffsetTags(long groupId, String socialActivityCounterName, int startOffset, int endOffset)
           
 List<AssetTag> getSocialActivityCounterPeriodTags(long groupId, String socialActivityCounterName, int startPeriod, int endPeriod)
           
 AssetTag getTag(long tagId)
           
 AssetTag getTag(long groupId, String name)
           
 long[] getTagIds(long[] groupIds, String name)
           
 long[] getTagIds(long[] groupIds, String[] names)
           
 long[] getTagIds(long groupId, String[] names)
           
 String[] getTagNames()
           
 String[] getTagNames(long classNameId, long classPK)
           
 String[] getTagNames(String className, long classPK)
           
 List<AssetTag> getTags()
           
 List<AssetTag> getTags(long classNameId, long classPK)
           
 List<AssetTag> getTags(long groupId, long classNameId, String name)
           
 List<AssetTag> getTags(long groupId, long classNameId, String name, int start, int end)
           
 List<AssetTag> getTags(String className, long classPK)
           
 int getTagsSize(long groupId, long classNameId, String name)
           
 AssetTagLocalService getWrappedAssetTagLocalService()
          Deprecated. Renamed to getWrappedService()
 AssetTagLocalService getWrappedService()
           
 boolean hasAssetEntryAssetTag(long entryId, long tagId)
           
 boolean hasAssetEntryAssetTags(long entryId)
           
 boolean hasTag(long groupId, String name)
           
 AssetTag incrementAssetCount(long tagId, long classNameId)
           
 void mergeTags(long fromTagId, long toTagId, boolean overrideProperties)
           
 List<AssetTag> search(long[] groupIds, String name, String[] tagProperties, int start, int end)
           
 List<AssetTag> search(long groupId, String name, String[] tagProperties, int start, int end)
           
 void setAssetEntryAssetTags(long entryId, long[] tagIds)
           
 void setBeanIdentifier(String beanIdentifier)
          Sets the Spring bean ID for this bean.
 void setWrappedAssetTagLocalService(AssetTagLocalService assetTagLocalService)
          Deprecated. Renamed to setWrappedService(com.liferay.portlet.asset.service.AssetTagLocalService)
 void setWrappedService(AssetTagLocalService assetTagLocalService)
           
 AssetTag updateAssetTag(AssetTag assetTag)
          Updates the asset tag in the database or adds it if it does not yet exist.
 AssetTag updateAssetTag(AssetTag assetTag, boolean merge)
          Updates the asset tag in the database or adds it if it does not yet exist.
 AssetTag updateTag(long userId, long tagId, String name, String[] tagProperties, ServiceContext serviceContext)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AssetTagLocalServiceWrapper

public AssetTagLocalServiceWrapper(AssetTagLocalService assetTagLocalService)
Method Detail

addAssetTag

public AssetTag addAssetTag(AssetTag assetTag)
                     throws SystemException
Adds the asset tag to the database. Also notifies the appropriate model listeners.

Specified by:
addAssetTag in interface AssetTagLocalService
Parameters:
assetTag - the asset tag
Returns:
the asset tag that was added
Throws:
SystemException - if a system exception occurred

createAssetTag

public AssetTag createAssetTag(long tagId)
Creates a new asset tag with the primary key. Does not add the asset tag to the database.

Specified by:
createAssetTag in interface AssetTagLocalService
Parameters:
tagId - the primary key for the new asset tag
Returns:
the new asset tag

deleteAssetTag

public AssetTag deleteAssetTag(long tagId)
                        throws PortalException,
                               SystemException
Deletes the asset tag with the primary key from the database. Also notifies the appropriate model listeners.

Specified by:
deleteAssetTag in interface AssetTagLocalService
Parameters:
tagId - the primary key of the asset tag
Returns:
the asset tag that was removed
Throws:
PortalException - if a asset tag with the primary key could not be found
SystemException - if a system exception occurred

deleteAssetTag

public AssetTag deleteAssetTag(AssetTag assetTag)
                        throws SystemException
Deletes the asset tag from the database. Also notifies the appropriate model listeners.

Specified by:
deleteAssetTag in interface AssetTagLocalService
Parameters:
assetTag - the asset tag
Returns:
the asset tag that was removed
Throws:
SystemException - if a system exception occurred

dynamicQuery

public DynamicQuery dynamicQuery()
Specified by:
dynamicQuery in interface AssetTagLocalService

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 AssetTagLocalService
Parameters:
dynamicQuery - the dynamic query
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 AssetTagLocalService
Parameters:
dynamicQuery - the dynamic query
start - the lower bound of the range of model instances
end - the upper bound of the range of model instances (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 AssetTagLocalService
Parameters:
dynamicQuery - the dynamic query
start - the lower bound of the range of model instances
end - the upper bound of the range of model instances (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching rows
Throws:
SystemException - if a system exception occurred

dynamicQueryCount

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

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

fetchAssetTag

public AssetTag fetchAssetTag(long tagId)
                       throws SystemException
Specified by:
fetchAssetTag in interface AssetTagLocalService
Throws:
SystemException

getAssetTag

public AssetTag getAssetTag(long tagId)
                     throws PortalException,
                            SystemException
Returns the asset tag with the primary key.

Specified by:
getAssetTag in interface AssetTagLocalService
Parameters:
tagId - the primary key of the asset tag
Returns:
the asset tag
Throws:
PortalException - if a asset tag with the primary key could not be found
SystemException - if a system exception occurred

getPersistedModel

public PersistedModel getPersistedModel(Serializable primaryKeyObj)
                                 throws PortalException,
                                        SystemException
Specified by:
getPersistedModel in interface PersistedModelLocalService
Specified by:
getPersistedModel in interface AssetTagLocalService
Throws:
PortalException
SystemException

getAssetTags

public List<AssetTag> getAssetTags(int start,
                                   int end)
                            throws SystemException
Returns a range of all the asset tags.

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:
getAssetTags in interface AssetTagLocalService
Parameters:
start - the lower bound of the range of asset tags
end - the upper bound of the range of asset tags (not inclusive)
Returns:
the range of asset tags
Throws:
SystemException - if a system exception occurred

getAssetTagsCount

public int getAssetTagsCount()
                      throws SystemException
Returns the number of asset tags.

Specified by:
getAssetTagsCount in interface AssetTagLocalService
Returns:
the number of asset tags
Throws:
SystemException - if a system exception occurred

updateAssetTag

public AssetTag updateAssetTag(AssetTag assetTag)
                        throws SystemException
Updates the asset tag in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.

Specified by:
updateAssetTag in interface AssetTagLocalService
Parameters:
assetTag - the asset tag
Returns:
the asset tag that was updated
Throws:
SystemException - if a system exception occurred

updateAssetTag

public AssetTag updateAssetTag(AssetTag assetTag,
                               boolean merge)
                        throws SystemException
Updates the asset tag in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.

Specified by:
updateAssetTag in interface AssetTagLocalService
Parameters:
assetTag - the asset tag
merge - whether to merge the asset tag 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 asset tag that was updated
Throws:
SystemException - if a system exception occurred

addAssetEntryAssetTag

public void addAssetEntryAssetTag(long entryId,
                                  long tagId)
                           throws SystemException
Specified by:
addAssetEntryAssetTag in interface AssetTagLocalService
Throws:
SystemException - if a system exception occurred

addAssetEntryAssetTag

public void addAssetEntryAssetTag(long entryId,
                                  AssetTag assetTag)
                           throws SystemException
Specified by:
addAssetEntryAssetTag in interface AssetTagLocalService
Throws:
SystemException - if a system exception occurred

addAssetEntryAssetTags

public void addAssetEntryAssetTags(long entryId,
                                   long[] tagIds)
                            throws SystemException
Specified by:
addAssetEntryAssetTags in interface AssetTagLocalService
Throws:
SystemException - if a system exception occurred

addAssetEntryAssetTags

public void addAssetEntryAssetTags(long entryId,
                                   List<AssetTag> AssetTags)
                            throws SystemException
Specified by:
addAssetEntryAssetTags in interface AssetTagLocalService
Throws:
SystemException - if a system exception occurred

clearAssetEntryAssetTags

public void clearAssetEntryAssetTags(long entryId)
                              throws SystemException
Specified by:
clearAssetEntryAssetTags in interface AssetTagLocalService
Throws:
SystemException - if a system exception occurred

deleteAssetEntryAssetTag

public void deleteAssetEntryAssetTag(long entryId,
                                     long tagId)
                              throws SystemException
Specified by:
deleteAssetEntryAssetTag in interface AssetTagLocalService
Throws:
SystemException - if a system exception occurred

deleteAssetEntryAssetTag

public void deleteAssetEntryAssetTag(long entryId,
                                     AssetTag assetTag)
                              throws SystemException
Specified by:
deleteAssetEntryAssetTag in interface AssetTagLocalService
Throws:
SystemException - if a system exception occurred

deleteAssetEntryAssetTags

public void deleteAssetEntryAssetTags(long entryId,
                                      long[] tagIds)
                               throws SystemException
Specified by:
deleteAssetEntryAssetTags in interface AssetTagLocalService
Throws:
SystemException - if a system exception occurred

deleteAssetEntryAssetTags

public void deleteAssetEntryAssetTags(long entryId,
                                      List<AssetTag> AssetTags)
                               throws SystemException
Specified by:
deleteAssetEntryAssetTags in interface AssetTagLocalService
Throws:
SystemException - if a system exception occurred

getAssetEntryAssetTags

public List<AssetTag> getAssetEntryAssetTags(long entryId)
                                      throws SystemException
Specified by:
getAssetEntryAssetTags in interface AssetTagLocalService
Throws:
SystemException - if a system exception occurred

getAssetEntryAssetTags

public List<AssetTag> getAssetEntryAssetTags(long entryId,
                                             int start,
                                             int end)
                                      throws SystemException
Specified by:
getAssetEntryAssetTags in interface AssetTagLocalService
Throws:
SystemException - if a system exception occurred

getAssetEntryAssetTags

public List<AssetTag> getAssetEntryAssetTags(long entryId,
                                             int start,
                                             int end,
                                             OrderByComparator orderByComparator)
                                      throws SystemException
Specified by:
getAssetEntryAssetTags in interface AssetTagLocalService
Throws:
SystemException - if a system exception occurred

getAssetEntryAssetTagsCount

public int getAssetEntryAssetTagsCount(long entryId)
                                throws SystemException
Specified by:
getAssetEntryAssetTagsCount in interface AssetTagLocalService
Throws:
SystemException - if a system exception occurred

hasAssetEntryAssetTag

public boolean hasAssetEntryAssetTag(long entryId,
                                     long tagId)
                              throws SystemException
Specified by:
hasAssetEntryAssetTag in interface AssetTagLocalService
Throws:
SystemException - if a system exception occurred

hasAssetEntryAssetTags

public boolean hasAssetEntryAssetTags(long entryId)
                               throws SystemException
Specified by:
hasAssetEntryAssetTags in interface AssetTagLocalService
Throws:
SystemException - if a system exception occurred

setAssetEntryAssetTags

public void setAssetEntryAssetTags(long entryId,
                                   long[] tagIds)
                            throws SystemException
Specified by:
setAssetEntryAssetTags in interface AssetTagLocalService
Throws:
SystemException - if a system exception occurred

getBeanIdentifier

public String getBeanIdentifier()
Returns the Spring bean ID for this bean.

Specified by:
getBeanIdentifier in interface AssetTagLocalService
Returns:
the Spring bean ID for this bean

setBeanIdentifier

public void setBeanIdentifier(String beanIdentifier)
Sets the Spring bean ID for this bean.

Specified by:
setBeanIdentifier in interface AssetTagLocalService
Parameters:
beanIdentifier - the Spring bean ID for this bean

addTag

public AssetTag addTag(long userId,
                       String name,
                       String[] tagProperties,
                       ServiceContext serviceContext)
                throws PortalException,
                       SystemException
Specified by:
addTag in interface AssetTagLocalService
Throws:
PortalException
SystemException

addTagResources

public void addTagResources(AssetTag tag,
                            boolean addGroupPermissions,
                            boolean addGuestPermissions)
                     throws PortalException,
                            SystemException
Specified by:
addTagResources in interface AssetTagLocalService
Throws:
PortalException
SystemException

addTagResources

public void addTagResources(AssetTag tag,
                            String[] groupPermissions,
                            String[] guestPermissions)
                     throws PortalException,
                            SystemException
Specified by:
addTagResources in interface AssetTagLocalService
Throws:
PortalException
SystemException

checkTags

public void checkTags(long userId,
                      long groupId,
                      String[] names)
               throws PortalException,
                      SystemException
Specified by:
checkTags in interface AssetTagLocalService
Throws:
PortalException
SystemException

decrementAssetCount

public AssetTag decrementAssetCount(long tagId,
                                    long classNameId)
                             throws PortalException,
                                    SystemException
Specified by:
decrementAssetCount in interface AssetTagLocalService
Throws:
PortalException
SystemException

deleteTag

public void deleteTag(AssetTag tag)
               throws PortalException,
                      SystemException
Specified by:
deleteTag in interface AssetTagLocalService
Throws:
PortalException
SystemException

deleteTag

public void deleteTag(long tagId)
               throws PortalException,
                      SystemException
Specified by:
deleteTag in interface AssetTagLocalService
Throws:
PortalException
SystemException

getEntryTags

public List<AssetTag> getEntryTags(long entryId)
                            throws SystemException
Specified by:
getEntryTags in interface AssetTagLocalService
Throws:
SystemException

getGroupsTags

public List<AssetTag> getGroupsTags(long[] groupIds)
                             throws SystemException
Specified by:
getGroupsTags in interface AssetTagLocalService
Throws:
SystemException

getGroupTags

public List<AssetTag> getGroupTags(long groupId)
                            throws SystemException
Specified by:
getGroupTags in interface AssetTagLocalService
Throws:
SystemException

getGroupTags

public List<AssetTag> getGroupTags(long groupId,
                                   int start,
                                   int end)
                            throws SystemException
Specified by:
getGroupTags in interface AssetTagLocalService
Throws:
SystemException

getGroupTagsCount

public int getGroupTagsCount(long groupId)
                      throws SystemException
Specified by:
getGroupTagsCount in interface AssetTagLocalService
Throws:
SystemException

getSocialActivityCounterOffsetTags

public List<AssetTag> getSocialActivityCounterOffsetTags(long groupId,
                                                         String socialActivityCounterName,
                                                         int startOffset,
                                                         int endOffset)
                                                  throws SystemException
Specified by:
getSocialActivityCounterOffsetTags in interface AssetTagLocalService
Throws:
SystemException

getSocialActivityCounterPeriodTags

public List<AssetTag> getSocialActivityCounterPeriodTags(long groupId,
                                                         String socialActivityCounterName,
                                                         int startPeriod,
                                                         int endPeriod)
                                                  throws SystemException
Specified by:
getSocialActivityCounterPeriodTags in interface AssetTagLocalService
Throws:
SystemException

getTag

public AssetTag getTag(long tagId)
                throws PortalException,
                       SystemException
Specified by:
getTag in interface AssetTagLocalService
Throws:
PortalException
SystemException

getTag

public AssetTag getTag(long groupId,
                       String name)
                throws PortalException,
                       SystemException
Specified by:
getTag in interface AssetTagLocalService
Throws:
PortalException
SystemException

getTagIds

public long[] getTagIds(long groupId,
                        String[] names)
                 throws PortalException,
                        SystemException
Specified by:
getTagIds in interface AssetTagLocalService
Throws:
PortalException
SystemException

getTagIds

public long[] getTagIds(long[] groupIds,
                        String name)
                 throws PortalException,
                        SystemException
Specified by:
getTagIds in interface AssetTagLocalService
Throws:
PortalException
SystemException

getTagIds

public long[] getTagIds(long[] groupIds,
                        String[] names)
                 throws PortalException,
                        SystemException
Specified by:
getTagIds in interface AssetTagLocalService
Throws:
PortalException
SystemException

getTagNames

public String[] getTagNames()
                     throws SystemException
Specified by:
getTagNames in interface AssetTagLocalService
Throws:
SystemException

getTagNames

public String[] getTagNames(long classNameId,
                            long classPK)
                     throws SystemException
Specified by:
getTagNames in interface AssetTagLocalService
Throws:
SystemException

getTagNames

public String[] getTagNames(String className,
                            long classPK)
                     throws SystemException
Specified by:
getTagNames in interface AssetTagLocalService
Throws:
SystemException

getTags

public List<AssetTag> getTags()
                       throws SystemException
Specified by:
getTags in interface AssetTagLocalService
Throws:
SystemException

getTags

public List<AssetTag> getTags(long classNameId,
                              long classPK)
                       throws SystemException
Specified by:
getTags in interface AssetTagLocalService
Throws:
SystemException

getTags

public List<AssetTag> getTags(long groupId,
                              long classNameId,
                              String name)
                       throws SystemException
Specified by:
getTags in interface AssetTagLocalService
Throws:
SystemException

getTags

public List<AssetTag> getTags(long groupId,
                              long classNameId,
                              String name,
                              int start,
                              int end)
                       throws SystemException
Specified by:
getTags in interface AssetTagLocalService
Throws:
SystemException

getTags

public List<AssetTag> getTags(String className,
                              long classPK)
                       throws SystemException
Specified by:
getTags in interface AssetTagLocalService
Throws:
SystemException

getTagsSize

public int getTagsSize(long groupId,
                       long classNameId,
                       String name)
                throws SystemException
Specified by:
getTagsSize in interface AssetTagLocalService
Throws:
SystemException

hasTag

public boolean hasTag(long groupId,
                      String name)
               throws PortalException,
                      SystemException
Specified by:
hasTag in interface AssetTagLocalService
Throws:
PortalException
SystemException

incrementAssetCount

public AssetTag incrementAssetCount(long tagId,
                                    long classNameId)
                             throws PortalException,
                                    SystemException
Specified by:
incrementAssetCount in interface AssetTagLocalService
Throws:
PortalException
SystemException

mergeTags

public void mergeTags(long fromTagId,
                      long toTagId,
                      boolean overrideProperties)
               throws PortalException,
                      SystemException
Specified by:
mergeTags in interface AssetTagLocalService
Throws:
PortalException
SystemException

search

public List<AssetTag> search(long groupId,
                             String name,
                             String[] tagProperties,
                             int start,
                             int end)
                      throws SystemException
Specified by:
search in interface AssetTagLocalService
Throws:
SystemException

search

public List<AssetTag> search(long[] groupIds,
                             String name,
                             String[] tagProperties,
                             int start,
                             int end)
                      throws SystemException
Specified by:
search in interface AssetTagLocalService
Throws:
SystemException

updateTag

public AssetTag updateTag(long userId,
                          long tagId,
                          String name,
                          String[] tagProperties,
                          ServiceContext serviceContext)
                   throws PortalException,
                          SystemException
Specified by:
updateTag in interface AssetTagLocalService
Throws:
PortalException
SystemException

getWrappedAssetTagLocalService

public AssetTagLocalService getWrappedAssetTagLocalService()
Deprecated. Renamed to getWrappedService()


setWrappedAssetTagLocalService

public void setWrappedAssetTagLocalService(AssetTagLocalService assetTagLocalService)
Deprecated. Renamed to setWrappedService(com.liferay.portlet.asset.service.AssetTagLocalService)


getWrappedService

public AssetTagLocalService getWrappedService()
Specified by:
getWrappedService in interface ServiceWrapper<AssetTagLocalService>

setWrappedService

public void setWrappedService(AssetTagLocalService assetTagLocalService)
Specified by:
setWrappedService in interface ServiceWrapper<AssetTagLocalService>

Liferay 6.1.2-ce-ga3