1
7
8 package com.liferay.client.soap.portlet.asset.service.http;
9
10 public interface AssetTagServiceSoap extends java.rmi.Remote {
11 public com.liferay.client.soap.portlet.asset.model.AssetTagSoap addTag(java.lang.String name, java.lang.String[] tagProperties, com.liferay.client.soap.portal.service.ServiceContext serviceContext) throws java.rmi.RemoteException;
12 public void deleteTag(long tagId) throws java.rmi.RemoteException;
13 public com.liferay.client.soap.portlet.asset.model.AssetTagSoap[] getGroupTags(long groupId) throws java.rmi.RemoteException;
14 public void mergeTags(long fromTagId, long toTagId) throws java.rmi.RemoteException;
15 public com.liferay.client.soap.portlet.asset.model.AssetTagSoap updateTag(long tagId, java.lang.String name, java.lang.String[] tagProperties, com.liferay.client.soap.portal.service.ServiceContext serviceContext) throws java.rmi.RemoteException;
16 public java.lang.Object search(long groupId, java.lang.String name, java.lang.String[] tagProperties, int start, int end) throws java.rmi.RemoteException;
17 public com.liferay.client.soap.portlet.asset.model.AssetTagSoap getTag(long tagId) throws java.rmi.RemoteException;
18 public com.liferay.client.soap.portlet.asset.model.AssetTagSoap[] getTags(long groupId, long classNameId, java.lang.String name) throws java.rmi.RemoteException;
19 public com.liferay.client.soap.portlet.asset.model.AssetTagSoap[] getTags(java.lang.String className, long classPK) throws java.rmi.RemoteException;
20 }
21