Liferay 6.0.5

com.liferay.portlet.asset.service
Class AssetTagServiceUtil

java.lang.Object
  extended by com.liferay.portlet.asset.service.AssetTagServiceUtil

public class AssetTagServiceUtil
extends Object

The utility for the asset tag remote service. This utility wraps AssetTagServiceImpl and is the primary access point for service operations in application layer code running on a remote server.

Never modify this class directly. Add custom service methods to AssetTagServiceImpl and rerun ServiceBuilder to regenerate this class.

This is a remote service. Methods of this service are expected to have security checks based on the propagated JAAS credentials because this service can be accessed remotely.

See Also:
AssetTagService, AssetTagServiceBaseImpl, AssetTagServiceImpl
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time is generated.

Constructor Summary
AssetTagServiceUtil()
           
 
Method Summary
static AssetTag addTag(String name, String[] tagProperties, ServiceContext serviceContext)
           
static void deleteTag(long tagId)
           
static List<AssetTag> getGroupTags(long groupId)
           
static AssetTagService getService()
           
static AssetTag getTag(long tagId)
           
static List<AssetTag> getTags(long groupId, long classNameId, String name)
           
static List<AssetTag> getTags(String className, long classPK)
           
static void mergeTags(long fromTagId, long toTagId)
           
static JSONArray search(long groupId, String name, String[] tagProperties, int start, int end)
           
 void setService(AssetTagService service)
           
static AssetTag updateTag(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

AssetTagServiceUtil

public AssetTagServiceUtil()
Method Detail

addTag

public static AssetTag addTag(String name,
                              String[] tagProperties,
                              ServiceContext serviceContext)
                       throws PortalException,
                              SystemException
Throws:
PortalException
SystemException

deleteTag

public static void deleteTag(long tagId)
                      throws PortalException,
                             SystemException
Throws:
PortalException
SystemException

getGroupTags

public static List<AssetTag> getGroupTags(long groupId)
                                   throws PortalException,
                                          SystemException
Throws:
PortalException
SystemException

getTag

public static AssetTag getTag(long tagId)
                       throws PortalException,
                              SystemException
Throws:
PortalException
SystemException

getTags

public static List<AssetTag> getTags(long groupId,
                                     long classNameId,
                                     String name)
                              throws PortalException,
                                     SystemException
Throws:
PortalException
SystemException

getTags

public static List<AssetTag> getTags(String className,
                                     long classPK)
                              throws PortalException,
                                     SystemException
Throws:
PortalException
SystemException

mergeTags

public static void mergeTags(long fromTagId,
                             long toTagId)
                      throws PortalException,
                             SystemException
Throws:
PortalException
SystemException

search

public static JSONArray search(long groupId,
                               String name,
                               String[] tagProperties,
                               int start,
                               int end)
                        throws SystemException
Throws:
SystemException

updateTag

public static AssetTag updateTag(long tagId,
                                 String name,
                                 String[] tagProperties,
                                 ServiceContext serviceContext)
                          throws PortalException,
                                 SystemException
Throws:
PortalException
SystemException

getService

public static AssetTagService getService()

setService

public void setService(AssetTagService service)

Liferay 6.0.5