1   /**
2    * TagsEntryServiceSoap.java
3    *
4    * This file was auto-generated from WSDL
5    * by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter.
6    */
7   
8   package com.liferay.client.soap.portlet.tags.service.http;
9   
10  public interface TagsEntryServiceSoap extends java.rmi.Remote {
11      public com.liferay.client.soap.portlet.tags.model.TagsEntrySoap addEntry(java.lang.String parentEntryName, java.lang.String name, java.lang.String vocabularyName, java.lang.String[] properties, com.liferay.client.soap.portal.service.ServiceContext serviceContext) throws java.rmi.RemoteException;
12      public com.liferay.client.soap.portlet.tags.model.TagsEntrySoap getEntry(long entryId) throws java.rmi.RemoteException;
13      public java.lang.Object search(long groupId, java.lang.String name, java.lang.String[] properties, int start, int end) throws java.rmi.RemoteException;
14      public com.liferay.client.soap.portlet.tags.model.TagsEntrySoap[] getEntries(long groupId, long classNameId, java.lang.String name) throws java.rmi.RemoteException;
15      public com.liferay.client.soap.portlet.tags.model.TagsEntrySoap[] getEntries(java.lang.String className, long classPK) throws java.rmi.RemoteException;
16      public void deleteEntry(long entryId) throws java.rmi.RemoteException;
17      public com.liferay.client.soap.portlet.tags.model.TagsEntrySoap updateEntry(long entryId, java.lang.String parentEntryName, java.lang.String name, java.lang.String vocabularyName, java.lang.String[] properties) throws java.rmi.RemoteException;
18      public com.liferay.client.soap.portlet.tags.model.TagsEntrySoap[] getGroupVocabularyEntries(long groupId, java.lang.String parentEntryName, java.lang.String vocabularyName) throws java.rmi.RemoteException;
19      public com.liferay.client.soap.portlet.tags.model.TagsEntrySoap[] getGroupVocabularyEntries(long groupId, java.lang.String vocabularyName) throws java.rmi.RemoteException;
20      public com.liferay.client.soap.portlet.tags.model.TagsEntrySoap[] getGroupVocabularyRootEntries(long groupId, java.lang.String vocabularyName) throws java.rmi.RemoteException;
21      public void mergeEntries(long fromEntryId, long toEntryId) throws java.rmi.RemoteException;
22  }
23