1
22
23 package com.liferay.portlet.tags.service;
24
25
51 public interface TagsEntryLocalService {
52 public com.liferay.portlet.tags.model.TagsEntry addTagsEntry(
53 com.liferay.portlet.tags.model.TagsEntry model)
54 throws com.liferay.portal.SystemException;
55
56 public java.util.List dynamicQuery(
57 com.liferay.portal.kernel.dao.DynamicQueryInitializer queryInitializer)
58 throws com.liferay.portal.SystemException;
59
60 public java.util.List dynamicQuery(
61 com.liferay.portal.kernel.dao.DynamicQueryInitializer queryInitializer,
62 int begin, int end) throws com.liferay.portal.SystemException;
63
64 public com.liferay.portlet.tags.model.TagsEntry updateTagsEntry(
65 com.liferay.portlet.tags.model.TagsEntry model)
66 throws com.liferay.portal.SystemException;
67
68 public com.liferay.portlet.tags.model.TagsEntry addEntry(long userId,
69 java.lang.String name)
70 throws com.liferay.portal.SystemException,
71 com.liferay.portal.PortalException;
72
73 public com.liferay.portlet.tags.model.TagsEntry addEntry(long userId,
74 java.lang.String name, java.lang.String[] properties)
75 throws com.liferay.portal.SystemException,
76 com.liferay.portal.PortalException;
77
78 public void deleteEntry(long entryId)
79 throws com.liferay.portal.SystemException,
80 com.liferay.portal.PortalException;
81
82 public void deleteEntry(com.liferay.portlet.tags.model.TagsEntry entry)
83 throws com.liferay.portal.SystemException,
84 com.liferay.portal.PortalException;
85
86 public boolean hasEntry(long companyId, java.lang.String name)
87 throws com.liferay.portal.SystemException,
88 com.liferay.portal.PortalException;
89
90 public java.util.List getAssetEntries(long assetId)
91 throws com.liferay.portal.SystemException,
92 com.liferay.portal.PortalException;
93
94 public java.util.List getEntries()
95 throws com.liferay.portal.SystemException;
96
97 public java.util.List getEntries(java.lang.String className, long classPK)
98 throws com.liferay.portal.SystemException,
99 com.liferay.portal.PortalException;
100
101 public com.liferay.portlet.tags.model.TagsEntry getEntry(long entryId)
102 throws com.liferay.portal.SystemException,
103 com.liferay.portal.PortalException;
104
105 public com.liferay.portlet.tags.model.TagsEntry getEntry(long companyId,
106 java.lang.String name)
107 throws com.liferay.portal.SystemException,
108 com.liferay.portal.PortalException;
109
110 public long[] getEntryIds(long companyId, java.lang.String[] names)
111 throws com.liferay.portal.SystemException,
112 com.liferay.portal.PortalException;
113
114 public java.util.List search(long companyId, java.lang.String name,
115 java.lang.String[] properties)
116 throws com.liferay.portal.SystemException;
117
118 public java.util.List search(long companyId, java.lang.String name,
119 java.lang.String[] properties, int begin, int end)
120 throws com.liferay.portal.SystemException;
121
122 public com.liferay.portal.kernel.json.JSONArrayWrapper searchAutocomplete(
123 long companyId, java.lang.String name, java.lang.String[] properties,
124 int begin, int end) throws com.liferay.portal.SystemException;
125
126 public int searchCount(long companyId, java.lang.String name,
127 java.lang.String[] properties)
128 throws com.liferay.portal.SystemException;
129
130 public com.liferay.portlet.tags.model.TagsEntry updateEntry(long entryId,
131 java.lang.String name)
132 throws com.liferay.portal.SystemException,
133 com.liferay.portal.PortalException;
134
135 public com.liferay.portlet.tags.model.TagsEntry updateEntry(long userId,
136 long entryId, java.lang.String name, java.lang.String[] properties)
137 throws com.liferay.portal.SystemException,
138 com.liferay.portal.PortalException;
139 }