Liferay 6.1.2-ce-ga3

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

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

public class AssetTagServiceSoap
extends Object

This class provides a SOAP utility for the AssetTagServiceUtil service utility. The static methods of this class calls the same methods of the service utility. However, the signatures are different because it is difficult for SOAP to support certain types.

ServiceBuilder follows certain rules in translating the methods. For example, if the method in the service utility returns a List, that is translated to an array of AssetTagSoap. If the method in the service utility returns a AssetTag, that is translated to a AssetTagSoap. Methods that SOAP cannot safely wire are skipped.

The benefits of using the SOAP utility is that it is cross platform compatible. SOAP allows different languages like Java, .NET, C++, PHP, and even Perl, to call the generated services. One drawback of SOAP is that it is slow because it needs to serialize all calls into a text format (XML).

You can see a list of services at http://localhost:8080/api/secure/axis. Set the property axis.servlet.hosts.allowed in portal.properties to configure security.

The SOAP utility is only generated for remote services.

See Also:
AssetTagServiceHttp, AssetTagSoap, AssetTagServiceUtil
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time it is generated.

Constructor Summary
AssetTagServiceSoap()
           
 
Method Summary
static AssetTagSoap addTag(String name, String[] tagProperties, ServiceContext serviceContext)
           
static void deleteTag(long tagId)
           
static void deleteTags(long[] tagIds)
           
static AssetTagSoap[] getGroupsTags(long[] groupIds)
           
static AssetTagSoap[] getGroupTags(long groupId)
           
static AssetTagSoap[] getGroupTags(long groupId, int start, int end, OrderByComparator obc)
           
static int getGroupTagsCount(long groupId)
           
static String getJSONGroupTags(long groupId, String name, int start, int end)
           
static AssetTagSoap getTag(long tagId)
           
static AssetTagSoap[] getTags(long[] groupIds, String name, String[] tagProperties, int start, int end)
           
static AssetTagSoap[] getTags(long groupId, long classNameId, String name)
           
static AssetTagSoap[] getTags(long groupId, long classNameId, String name, int start, int end, OrderByComparator obc)
           
static AssetTagSoap[] getTags(long groupId, String name, String[] tagProperties, int start, int end)
           
static AssetTagSoap[] getTags(String className, long classPK)
           
static int getTagsCount(long groupId, long classNameId, String name)
           
static int getTagsCount(long groupId, String name)
           
static int getTagsCount(long groupId, String name, String[] tagProperties)
           
static void mergeTags(long[] fromTagIds, long toTagId, boolean overrideProperties)
           
static void mergeTags(long fromTagId, long toTagId, boolean overrideProperties)
           
static String search(long[] groupIds, String name, String[] tagProperties, int start, int end)
           
static String search(long groupId, String name, String[] tagProperties, int start, int end)
           
static AssetTagSoap 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

AssetTagServiceSoap

public AssetTagServiceSoap()
Method Detail

addTag

public static AssetTagSoap addTag(String name,
                                  String[] tagProperties,
                                  ServiceContext serviceContext)
                           throws RemoteException
Throws:
RemoteException

deleteTag

public static void deleteTag(long tagId)
                      throws RemoteException
Throws:
RemoteException

deleteTags

public static void deleteTags(long[] tagIds)
                       throws RemoteException
Throws:
RemoteException

getGroupsTags

public static AssetTagSoap[] getGroupsTags(long[] groupIds)
                                    throws RemoteException
Throws:
RemoteException

getGroupTags

public static AssetTagSoap[] getGroupTags(long groupId)
                                   throws RemoteException
Throws:
RemoteException

getGroupTags

public static AssetTagSoap[] getGroupTags(long groupId,
                                          int start,
                                          int end,
                                          OrderByComparator obc)
                                   throws RemoteException
Throws:
RemoteException

getGroupTagsCount

public static int getGroupTagsCount(long groupId)
                             throws RemoteException
Throws:
RemoteException

getJSONGroupTags

public static String getJSONGroupTags(long groupId,
                                      String name,
                                      int start,
                                      int end)
                               throws RemoteException
Throws:
RemoteException

getTag

public static AssetTagSoap getTag(long tagId)
                           throws RemoteException
Throws:
RemoteException

getTags

public static AssetTagSoap[] getTags(long groupId,
                                     long classNameId,
                                     String name)
                              throws RemoteException
Throws:
RemoteException

getTags

public static AssetTagSoap[] getTags(long groupId,
                                     long classNameId,
                                     String name,
                                     int start,
                                     int end,
                                     OrderByComparator obc)
                              throws RemoteException
Throws:
RemoteException

getTags

public static AssetTagSoap[] getTags(long groupId,
                                     String name,
                                     String[] tagProperties,
                                     int start,
                                     int end)
                              throws RemoteException
Throws:
RemoteException

getTags

public static AssetTagSoap[] getTags(long[] groupIds,
                                     String name,
                                     String[] tagProperties,
                                     int start,
                                     int end)
                              throws RemoteException
Throws:
RemoteException

getTags

public static AssetTagSoap[] getTags(String className,
                                     long classPK)
                              throws RemoteException
Throws:
RemoteException

getTagsCount

public static int getTagsCount(long groupId,
                               long classNameId,
                               String name)
                        throws RemoteException
Throws:
RemoteException

getTagsCount

public static int getTagsCount(long groupId,
                               String name)
                        throws RemoteException
Throws:
RemoteException

getTagsCount

public static int getTagsCount(long groupId,
                               String name,
                               String[] tagProperties)
                        throws RemoteException
Throws:
RemoteException

mergeTags

public static void mergeTags(long fromTagId,
                             long toTagId,
                             boolean overrideProperties)
                      throws RemoteException
Throws:
RemoteException

mergeTags

public static void mergeTags(long[] fromTagIds,
                             long toTagId,
                             boolean overrideProperties)
                      throws RemoteException
Throws:
RemoteException

search

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

search

public static String search(long[] groupIds,
                            String name,
                            String[] tagProperties,
                            int start,
                            int end)
                     throws RemoteException
Throws:
RemoteException

updateTag

public static AssetTagSoap updateTag(long tagId,
                                     String name,
                                     String[] tagProperties,
                                     ServiceContext serviceContext)
                              throws RemoteException
Throws:
RemoteException

Liferay 6.1.2-ce-ga3