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.portlet.tags.service.http;
9   
10  public interface TagsEntryServiceSoap extends java.rmi.Remote {
11      public com.liferay.client.portlet.tags.model.TagsEntrySoap[] search(long companyId, java.lang.String name, java.lang.String[] properties) throws java.rmi.RemoteException;
12      public com.liferay.client.portlet.tags.model.TagsEntrySoap[] search(long companyId, java.lang.String name, java.lang.String[] properties, int begin, int end) throws java.rmi.RemoteException;
13      public com.liferay.client.portlet.tags.model.TagsEntrySoap addEntry(java.lang.String name) throws java.rmi.RemoteException;
14      public com.liferay.client.portlet.tags.model.TagsEntrySoap addEntry(java.lang.String name, java.lang.String[] properties) throws java.rmi.RemoteException;
15      public void deleteEntry(long entryId) throws java.rmi.RemoteException;
16      public com.liferay.client.portlet.tags.model.TagsEntrySoap[] getEntries(java.lang.String className, long classPK) throws java.rmi.RemoteException;
17      public com.liferay.client.portlet.tags.model.TagsEntrySoap updateEntry(long entryId, java.lang.String name, java.lang.String[] properties) throws java.rmi.RemoteException;
18      public com.liferay.client.portlet.tags.model.TagsEntrySoap updateEntry(long entryId, java.lang.String name) throws java.rmi.RemoteException;
19      public int searchCount(long companyId, java.lang.String name, java.lang.String[] properties) throws java.rmi.RemoteException;
20      public com.liferay.client.portal.kernel.json.JSONArrayWrapper searchAutocomplete(long companyId, java.lang.String name, java.lang.String[] properties, int begin, int end) throws java.rmi.RemoteException;
21  }
22