Liferay 6.0.5

com.liferay.portlet.asset.service.http
Class AssetTagPropertyServiceHttp

java.lang.Object
  extended by com.liferay.portlet.asset.service.http.AssetTagPropertyServiceHttp

public class AssetTagPropertyServiceHttp
extends Object

This class provides a HTTP utility for the AssetTagPropertyServiceUtil service utility. The static methods of this class calls the same methods of the service utility. However, the signatures are different because it requires an additional HttpPrincipal parameter.

The benefits of using the HTTP utility is that it is fast and allows for tunneling without the cost of serializing to text. The drawback is that it only works with Java.

Set the property tunnel.servlet.hosts.allowed in portal.properties to configure security.

The HTTP utility is only generated for remote services.

See Also:
AssetTagPropertyServiceSoap, HttpPrincipal, AssetTagPropertyServiceUtil
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time is generated.

Constructor Summary
AssetTagPropertyServiceHttp()
           
 
Method Summary
static AssetTagProperty addTagProperty(HttpPrincipal httpPrincipal, long tagId, String key, String value)
           
static void deleteTagProperty(HttpPrincipal httpPrincipal, long tagPropertyId)
           
static List<AssetTagProperty> getTagProperties(HttpPrincipal httpPrincipal, long tagId)
           
static List<AssetTagProperty> getTagPropertyValues(HttpPrincipal httpPrincipal, long companyId, String key)
           
static AssetTagProperty updateTagProperty(HttpPrincipal httpPrincipal, long tagPropertyId, String key, String value)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AssetTagPropertyServiceHttp

public AssetTagPropertyServiceHttp()
Method Detail

addTagProperty

public static AssetTagProperty addTagProperty(HttpPrincipal httpPrincipal,
                                              long tagId,
                                              String key,
                                              String value)
                                       throws PortalException,
                                              SystemException
Throws:
PortalException
SystemException

deleteTagProperty

public static void deleteTagProperty(HttpPrincipal httpPrincipal,
                                     long tagPropertyId)
                              throws PortalException,
                                     SystemException
Throws:
PortalException
SystemException

getTagProperties

public static List<AssetTagProperty> getTagProperties(HttpPrincipal httpPrincipal,
                                                      long tagId)
                                               throws SystemException
Throws:
SystemException

getTagPropertyValues

public static List<AssetTagProperty> getTagPropertyValues(HttpPrincipal httpPrincipal,
                                                          long companyId,
                                                          String key)
                                                   throws SystemException
Throws:
SystemException

updateTagProperty

public static AssetTagProperty updateTagProperty(HttpPrincipal httpPrincipal,
                                                 long tagPropertyId,
                                                 String key,
                                                 String value)
                                          throws PortalException,
                                                 SystemException
Throws:
PortalException
SystemException

Liferay 6.0.5