1
22
23 package com.liferay.portlet.tags.service;
24
25
26
51 public interface TagsEntryService {
52 public com.liferay.portlet.tags.model.TagsEntry addEntry(
53 java.lang.String name)
54 throws java.rmi.RemoteException, com.liferay.portal.SystemException,
55 com.liferay.portal.PortalException;
56
57 public com.liferay.portlet.tags.model.TagsEntry addEntry(
58 java.lang.String name, java.lang.String[] properties)
59 throws java.rmi.RemoteException, com.liferay.portal.SystemException,
60 com.liferay.portal.PortalException;
61
62 public void deleteEntry(long entryId)
63 throws java.rmi.RemoteException, com.liferay.portal.SystemException,
64 com.liferay.portal.PortalException;
65
66 public java.util.List<com.liferay.portlet.tags.model.TagsEntry> getEntries(
67 java.lang.String className, long classPK)
68 throws java.rmi.RemoteException, com.liferay.portal.SystemException,
69 com.liferay.portal.PortalException;
70
71 public java.util.List<com.liferay.portlet.tags.model.TagsEntry> getEntries(
72 long groupId, long companyId, long classNameId, java.lang.String name)
73 throws java.rmi.RemoteException, com.liferay.portal.SystemException;
74
75 public void mergeEntries(long fromEntryId, long toEntryId)
76 throws java.rmi.RemoteException, com.liferay.portal.SystemException,
77 com.liferay.portal.PortalException;
78
79 public java.util.List<com.liferay.portlet.tags.model.TagsEntry> search(
80 long companyId, java.lang.String name, java.lang.String[] properties)
81 throws java.rmi.RemoteException, com.liferay.portal.SystemException;
82
83 public java.util.List<com.liferay.portlet.tags.model.TagsEntry> search(
84 long companyId, java.lang.String name, java.lang.String[] properties,
85 int begin, int end)
86 throws java.rmi.RemoteException, com.liferay.portal.SystemException;
87
88 public com.liferay.portal.kernel.json.JSONArrayWrapper searchAutocomplete(
89 long companyId, java.lang.String name, java.lang.String[] properties,
90 int begin, int end)
91 throws java.rmi.RemoteException, com.liferay.portal.SystemException;
92
93 public int searchCount(long companyId, java.lang.String name,
94 java.lang.String[] properties)
95 throws java.rmi.RemoteException, com.liferay.portal.SystemException;
96
97 public com.liferay.portlet.tags.model.TagsEntry updateEntry(long entryId,
98 java.lang.String name)
99 throws java.rmi.RemoteException, com.liferay.portal.SystemException,
100 com.liferay.portal.PortalException;
101
102 public com.liferay.portlet.tags.model.TagsEntry updateEntry(long entryId,
103 java.lang.String name, java.lang.String[] properties)
104 throws java.rmi.RemoteException, com.liferay.portal.SystemException,
105 com.liferay.portal.PortalException;
106 }