/** * Copyright (c) 2000-present Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ package com.liferay.bookmarks.service.http; import aQute.bnd.annotation.ProviderType; import com.liferay.bookmarks.service.BookmarksEntryServiceUtil; import com.liferay.portal.kernel.log.Log; import com.liferay.portal.kernel.log.LogFactoryUtil; import com.liferay.portal.kernel.security.auth.HttpPrincipal; import com.liferay.portal.kernel.service.http.TunnelUtil; import com.liferay.portal.kernel.util.MethodHandler; import com.liferay.portal.kernel.util.MethodKey; /** * Provides the HTTP utility for the * {@link BookmarksEntryServiceUtil} service utility. The * static methods of this class calls the same methods of the service utility. * However, the signatures are different because it requires an additional * {@link HttpPrincipal} parameter. * * <p> * The benefits of using the HTTP utility is that it is fast and allows for * tunneling without the cost of serializing to text. The drawback is that it * only works with Java. * </p> * * <p> * Set the property <b>tunnel.servlet.hosts.allowed</b> in portal.properties to * configure security. * </p> * * <p> * The HTTP utility is only generated for remote services. * </p> * * @author Brian Wing Shun Chan * @see BookmarksEntryServiceSoap * @see HttpPrincipal * @see BookmarksEntryServiceUtil * @generated */ @ProviderType public class BookmarksEntryServiceHttp { public static com.liferay.bookmarks.model.BookmarksEntry addEntry( HttpPrincipal httpPrincipal, long groupId, long folderId, java.lang.String name, java.lang.String url, java.lang.String description, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException { try { MethodKey methodKey = new MethodKey(BookmarksEntryServiceUtil.class, "addEntry", _addEntryParameterTypes0); MethodHandler methodHandler = new MethodHandler(methodKey, groupId, folderId, name, url, description, serviceContext); Object returnObj = null; try { returnObj = TunnelUtil.invoke(httpPrincipal, methodHandler); } catch (Exception e) { if (e instanceof com.liferay.portal.kernel.exception.PortalException) { throw (com.liferay.portal.kernel.exception.PortalException)e; } throw new com.liferay.portal.kernel.exception.SystemException(e); } return (com.liferay.bookmarks.model.BookmarksEntry)returnObj; } catch (com.liferay.portal.kernel.exception.SystemException se) { _log.error(se, se); throw se; } } public static void deleteEntry(HttpPrincipal httpPrincipal, long entryId) throws com.liferay.portal.kernel.exception.PortalException { try { MethodKey methodKey = new MethodKey(BookmarksEntryServiceUtil.class, "deleteEntry", _deleteEntryParameterTypes1); MethodHandler methodHandler = new MethodHandler(methodKey, entryId); try { TunnelUtil.invoke(httpPrincipal, methodHandler); } catch (Exception e) { if (e instanceof com.liferay.portal.kernel.exception.PortalException) { throw (com.liferay.portal.kernel.exception.PortalException)e; } throw new com.liferay.portal.kernel.exception.SystemException(e); } } catch (com.liferay.portal.kernel.exception.SystemException se) { _log.error(se, se); throw se; } } public static java.util.List<com.liferay.bookmarks.model.BookmarksEntry> getEntries( HttpPrincipal httpPrincipal, long groupId, long folderId, int start, int end) { try { MethodKey methodKey = new MethodKey(BookmarksEntryServiceUtil.class, "getEntries", _getEntriesParameterTypes2); MethodHandler methodHandler = new MethodHandler(methodKey, groupId, folderId, start, end); Object returnObj = null; try { returnObj = TunnelUtil.invoke(httpPrincipal, methodHandler); } catch (Exception e) { throw new com.liferay.portal.kernel.exception.SystemException(e); } return (java.util.List<com.liferay.bookmarks.model.BookmarksEntry>)returnObj; } catch (com.liferay.portal.kernel.exception.SystemException se) { _log.error(se, se); throw se; } } public static java.util.List<com.liferay.bookmarks.model.BookmarksEntry> getEntries( HttpPrincipal httpPrincipal, long groupId, long folderId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<com.liferay.bookmarks.model.BookmarksEntry> orderByComparator) { try { MethodKey methodKey = new MethodKey(BookmarksEntryServiceUtil.class, "getEntries", _getEntriesParameterTypes3); MethodHandler methodHandler = new MethodHandler(methodKey, groupId, folderId, start, end, orderByComparator); Object returnObj = null; try { returnObj = TunnelUtil.invoke(httpPrincipal, methodHandler); } catch (Exception e) { throw new com.liferay.portal.kernel.exception.SystemException(e); } return (java.util.List<com.liferay.bookmarks.model.BookmarksEntry>)returnObj; } catch (com.liferay.portal.kernel.exception.SystemException se) { _log.error(se, se); throw se; } } public static int getEntriesCount(HttpPrincipal httpPrincipal, long groupId, long folderId) { try { MethodKey methodKey = new MethodKey(BookmarksEntryServiceUtil.class, "getEntriesCount", _getEntriesCountParameterTypes4); MethodHandler methodHandler = new MethodHandler(methodKey, groupId, folderId); Object returnObj = null; try { returnObj = TunnelUtil.invoke(httpPrincipal, methodHandler); } catch (Exception e) { throw new com.liferay.portal.kernel.exception.SystemException(e); } return ((Integer)returnObj).intValue(); } catch (com.liferay.portal.kernel.exception.SystemException se) { _log.error(se, se); throw se; } } public static int getEntriesCount(HttpPrincipal httpPrincipal, long groupId, long folderId, int status) { try { MethodKey methodKey = new MethodKey(BookmarksEntryServiceUtil.class, "getEntriesCount", _getEntriesCountParameterTypes5); MethodHandler methodHandler = new MethodHandler(methodKey, groupId, folderId, status); Object returnObj = null; try { returnObj = TunnelUtil.invoke(httpPrincipal, methodHandler); } catch (Exception e) { throw new com.liferay.portal.kernel.exception.SystemException(e); } return ((Integer)returnObj).intValue(); } catch (com.liferay.portal.kernel.exception.SystemException se) { _log.error(se, se); throw se; } } public static com.liferay.bookmarks.model.BookmarksEntry getEntry( HttpPrincipal httpPrincipal, long entryId) throws com.liferay.portal.kernel.exception.PortalException { try { MethodKey methodKey = new MethodKey(BookmarksEntryServiceUtil.class, "getEntry", _getEntryParameterTypes6); MethodHandler methodHandler = new MethodHandler(methodKey, entryId); Object returnObj = null; try { returnObj = TunnelUtil.invoke(httpPrincipal, methodHandler); } catch (Exception e) { if (e instanceof com.liferay.portal.kernel.exception.PortalException) { throw (com.liferay.portal.kernel.exception.PortalException)e; } throw new com.liferay.portal.kernel.exception.SystemException(e); } return (com.liferay.bookmarks.model.BookmarksEntry)returnObj; } catch (com.liferay.portal.kernel.exception.SystemException se) { _log.error(se, se); throw se; } } public static int getFoldersEntriesCount(HttpPrincipal httpPrincipal, long groupId, java.util.List<java.lang.Long> folderIds) { try { MethodKey methodKey = new MethodKey(BookmarksEntryServiceUtil.class, "getFoldersEntriesCount", _getFoldersEntriesCountParameterTypes7); MethodHandler methodHandler = new MethodHandler(methodKey, groupId, folderIds); Object returnObj = null; try { returnObj = TunnelUtil.invoke(httpPrincipal, methodHandler); } catch (Exception e) { throw new com.liferay.portal.kernel.exception.SystemException(e); } return ((Integer)returnObj).intValue(); } catch (com.liferay.portal.kernel.exception.SystemException se) { _log.error(se, se); throw se; } } public static java.util.List<com.liferay.bookmarks.model.BookmarksEntry> getGroupEntries( HttpPrincipal httpPrincipal, long groupId, int start, int end) throws com.liferay.portal.kernel.exception.PortalException { try { MethodKey methodKey = new MethodKey(BookmarksEntryServiceUtil.class, "getGroupEntries", _getGroupEntriesParameterTypes8); MethodHandler methodHandler = new MethodHandler(methodKey, groupId, start, end); Object returnObj = null; try { returnObj = TunnelUtil.invoke(httpPrincipal, methodHandler); } catch (Exception e) { if (e instanceof com.liferay.portal.kernel.exception.PortalException) { throw (com.liferay.portal.kernel.exception.PortalException)e; } throw new com.liferay.portal.kernel.exception.SystemException(e); } return (java.util.List<com.liferay.bookmarks.model.BookmarksEntry>)returnObj; } catch (com.liferay.portal.kernel.exception.SystemException se) { _log.error(se, se); throw se; } } public static java.util.List<com.liferay.bookmarks.model.BookmarksEntry> getGroupEntries( HttpPrincipal httpPrincipal, long groupId, long userId, int start, int end) throws com.liferay.portal.kernel.exception.PortalException { try { MethodKey methodKey = new MethodKey(BookmarksEntryServiceUtil.class, "getGroupEntries", _getGroupEntriesParameterTypes9); MethodHandler methodHandler = new MethodHandler(methodKey, groupId, userId, start, end); Object returnObj = null; try { returnObj = TunnelUtil.invoke(httpPrincipal, methodHandler); } catch (Exception e) { if (e instanceof com.liferay.portal.kernel.exception.PortalException) { throw (com.liferay.portal.kernel.exception.PortalException)e; } throw new com.liferay.portal.kernel.exception.SystemException(e); } return (java.util.List<com.liferay.bookmarks.model.BookmarksEntry>)returnObj; } catch (com.liferay.portal.kernel.exception.SystemException se) { _log.error(se, se); throw se; } } public static java.util.List<com.liferay.bookmarks.model.BookmarksEntry> getGroupEntries( HttpPrincipal httpPrincipal, long groupId, long userId, long rootFolderId, int start, int end) throws com.liferay.portal.kernel.exception.PortalException { try { MethodKey methodKey = new MethodKey(BookmarksEntryServiceUtil.class, "getGroupEntries", _getGroupEntriesParameterTypes10); MethodHandler methodHandler = new MethodHandler(methodKey, groupId, userId, rootFolderId, start, end); Object returnObj = null; try { returnObj = TunnelUtil.invoke(httpPrincipal, methodHandler); } catch (Exception e) { if (e instanceof com.liferay.portal.kernel.exception.PortalException) { throw (com.liferay.portal.kernel.exception.PortalException)e; } throw new com.liferay.portal.kernel.exception.SystemException(e); } return (java.util.List<com.liferay.bookmarks.model.BookmarksEntry>)returnObj; } catch (com.liferay.portal.kernel.exception.SystemException se) { _log.error(se, se); throw se; } } public static int getGroupEntriesCount(HttpPrincipal httpPrincipal, long groupId) throws com.liferay.portal.kernel.exception.PortalException { try { MethodKey methodKey = new MethodKey(BookmarksEntryServiceUtil.class, "getGroupEntriesCount", _getGroupEntriesCountParameterTypes11); MethodHandler methodHandler = new MethodHandler(methodKey, groupId); Object returnObj = null; try { returnObj = TunnelUtil.invoke(httpPrincipal, methodHandler); } catch (Exception e) { if (e instanceof com.liferay.portal.kernel.exception.PortalException) { throw (com.liferay.portal.kernel.exception.PortalException)e; } throw new com.liferay.portal.kernel.exception.SystemException(e); } return ((Integer)returnObj).intValue(); } catch (com.liferay.portal.kernel.exception.SystemException se) { _log.error(se, se); throw se; } } public static int getGroupEntriesCount(HttpPrincipal httpPrincipal, long groupId, long userId) throws com.liferay.portal.kernel.exception.PortalException { try { MethodKey methodKey = new MethodKey(BookmarksEntryServiceUtil.class, "getGroupEntriesCount", _getGroupEntriesCountParameterTypes12); MethodHandler methodHandler = new MethodHandler(methodKey, groupId, userId); Object returnObj = null; try { returnObj = TunnelUtil.invoke(httpPrincipal, methodHandler); } catch (Exception e) { if (e instanceof com.liferay.portal.kernel.exception.PortalException) { throw (com.liferay.portal.kernel.exception.PortalException)e; } throw new com.liferay.portal.kernel.exception.SystemException(e); } return ((Integer)returnObj).intValue(); } catch (com.liferay.portal.kernel.exception.SystemException se) { _log.error(se, se); throw se; } } public static int getGroupEntriesCount(HttpPrincipal httpPrincipal, long groupId, long userId, long rootFolderId) throws com.liferay.portal.kernel.exception.PortalException { try { MethodKey methodKey = new MethodKey(BookmarksEntryServiceUtil.class, "getGroupEntriesCount", _getGroupEntriesCountParameterTypes13); MethodHandler methodHandler = new MethodHandler(methodKey, groupId, userId, rootFolderId); Object returnObj = null; try { returnObj = TunnelUtil.invoke(httpPrincipal, methodHandler); } catch (Exception e) { if (e instanceof com.liferay.portal.kernel.exception.PortalException) { throw (com.liferay.portal.kernel.exception.PortalException)e; } throw new com.liferay.portal.kernel.exception.SystemException(e); } return ((Integer)returnObj).intValue(); } catch (com.liferay.portal.kernel.exception.SystemException se) { _log.error(se, se); throw se; } } public static com.liferay.bookmarks.model.BookmarksEntry moveEntry( HttpPrincipal httpPrincipal, long entryId, long parentFolderId) throws com.liferay.portal.kernel.exception.PortalException { try { MethodKey methodKey = new MethodKey(BookmarksEntryServiceUtil.class, "moveEntry", _moveEntryParameterTypes14); MethodHandler methodHandler = new MethodHandler(methodKey, entryId, parentFolderId); Object returnObj = null; try { returnObj = TunnelUtil.invoke(httpPrincipal, methodHandler); } catch (Exception e) { if (e instanceof com.liferay.portal.kernel.exception.PortalException) { throw (com.liferay.portal.kernel.exception.PortalException)e; } throw new com.liferay.portal.kernel.exception.SystemException(e); } return (com.liferay.bookmarks.model.BookmarksEntry)returnObj; } catch (com.liferay.portal.kernel.exception.SystemException se) { _log.error(se, se); throw se; } } public static com.liferay.bookmarks.model.BookmarksEntry moveEntryFromTrash( HttpPrincipal httpPrincipal, long entryId, long parentFolderId) throws com.liferay.portal.kernel.exception.PortalException { try { MethodKey methodKey = new MethodKey(BookmarksEntryServiceUtil.class, "moveEntryFromTrash", _moveEntryFromTrashParameterTypes15); MethodHandler methodHandler = new MethodHandler(methodKey, entryId, parentFolderId); Object returnObj = null; try { returnObj = TunnelUtil.invoke(httpPrincipal, methodHandler); } catch (Exception e) { if (e instanceof com.liferay.portal.kernel.exception.PortalException) { throw (com.liferay.portal.kernel.exception.PortalException)e; } throw new com.liferay.portal.kernel.exception.SystemException(e); } return (com.liferay.bookmarks.model.BookmarksEntry)returnObj; } catch (com.liferay.portal.kernel.exception.SystemException se) { _log.error(se, se); throw se; } } public static com.liferay.bookmarks.model.BookmarksEntry moveEntryToTrash( HttpPrincipal httpPrincipal, long entryId) throws com.liferay.portal.kernel.exception.PortalException { try { MethodKey methodKey = new MethodKey(BookmarksEntryServiceUtil.class, "moveEntryToTrash", _moveEntryToTrashParameterTypes16); MethodHandler methodHandler = new MethodHandler(methodKey, entryId); Object returnObj = null; try { returnObj = TunnelUtil.invoke(httpPrincipal, methodHandler); } catch (Exception e) { if (e instanceof com.liferay.portal.kernel.exception.PortalException) { throw (com.liferay.portal.kernel.exception.PortalException)e; } throw new com.liferay.portal.kernel.exception.SystemException(e); } return (com.liferay.bookmarks.model.BookmarksEntry)returnObj; } catch (com.liferay.portal.kernel.exception.SystemException se) { _log.error(se, se); throw se; } } public static com.liferay.bookmarks.model.BookmarksEntry openEntry( HttpPrincipal httpPrincipal, com.liferay.bookmarks.model.BookmarksEntry entry) throws com.liferay.portal.kernel.exception.PortalException { try { MethodKey methodKey = new MethodKey(BookmarksEntryServiceUtil.class, "openEntry", _openEntryParameterTypes17); MethodHandler methodHandler = new MethodHandler(methodKey, entry); Object returnObj = null; try { returnObj = TunnelUtil.invoke(httpPrincipal, methodHandler); } catch (Exception e) { if (e instanceof com.liferay.portal.kernel.exception.PortalException) { throw (com.liferay.portal.kernel.exception.PortalException)e; } throw new com.liferay.portal.kernel.exception.SystemException(e); } return (com.liferay.bookmarks.model.BookmarksEntry)returnObj; } catch (com.liferay.portal.kernel.exception.SystemException se) { _log.error(se, se); throw se; } } public static com.liferay.bookmarks.model.BookmarksEntry openEntry( HttpPrincipal httpPrincipal, long entryId) throws com.liferay.portal.kernel.exception.PortalException { try { MethodKey methodKey = new MethodKey(BookmarksEntryServiceUtil.class, "openEntry", _openEntryParameterTypes18); MethodHandler methodHandler = new MethodHandler(methodKey, entryId); Object returnObj = null; try { returnObj = TunnelUtil.invoke(httpPrincipal, methodHandler); } catch (Exception e) { if (e instanceof com.liferay.portal.kernel.exception.PortalException) { throw (com.liferay.portal.kernel.exception.PortalException)e; } throw new com.liferay.portal.kernel.exception.SystemException(e); } return (com.liferay.bookmarks.model.BookmarksEntry)returnObj; } catch (com.liferay.portal.kernel.exception.SystemException se) { _log.error(se, se); throw se; } } public static void restoreEntryFromTrash(HttpPrincipal httpPrincipal, long entryId) throws com.liferay.portal.kernel.exception.PortalException { try { MethodKey methodKey = new MethodKey(BookmarksEntryServiceUtil.class, "restoreEntryFromTrash", _restoreEntryFromTrashParameterTypes19); MethodHandler methodHandler = new MethodHandler(methodKey, entryId); try { TunnelUtil.invoke(httpPrincipal, methodHandler); } catch (Exception e) { if (e instanceof com.liferay.portal.kernel.exception.PortalException) { throw (com.liferay.portal.kernel.exception.PortalException)e; } throw new com.liferay.portal.kernel.exception.SystemException(e); } } catch (com.liferay.portal.kernel.exception.SystemException se) { _log.error(se, se); throw se; } } public static com.liferay.portal.kernel.search.Hits search( HttpPrincipal httpPrincipal, long groupId, long creatorUserId, int status, int start, int end) throws com.liferay.portal.kernel.exception.PortalException { try { MethodKey methodKey = new MethodKey(BookmarksEntryServiceUtil.class, "search", _searchParameterTypes20); MethodHandler methodHandler = new MethodHandler(methodKey, groupId, creatorUserId, status, start, end); Object returnObj = null; try { returnObj = TunnelUtil.invoke(httpPrincipal, methodHandler); } catch (Exception e) { if (e instanceof com.liferay.portal.kernel.exception.PortalException) { throw (com.liferay.portal.kernel.exception.PortalException)e; } throw new com.liferay.portal.kernel.exception.SystemException(e); } return (com.liferay.portal.kernel.search.Hits)returnObj; } catch (com.liferay.portal.kernel.exception.SystemException se) { _log.error(se, se); throw se; } } public static void subscribeEntry(HttpPrincipal httpPrincipal, long entryId) throws com.liferay.portal.kernel.exception.PortalException { try { MethodKey methodKey = new MethodKey(BookmarksEntryServiceUtil.class, "subscribeEntry", _subscribeEntryParameterTypes21); MethodHandler methodHandler = new MethodHandler(methodKey, entryId); try { TunnelUtil.invoke(httpPrincipal, methodHandler); } catch (Exception e) { if (e instanceof com.liferay.portal.kernel.exception.PortalException) { throw (com.liferay.portal.kernel.exception.PortalException)e; } throw new com.liferay.portal.kernel.exception.SystemException(e); } } catch (com.liferay.portal.kernel.exception.SystemException se) { _log.error(se, se); throw se; } } public static void unsubscribeEntry(HttpPrincipal httpPrincipal, long entryId) throws com.liferay.portal.kernel.exception.PortalException { try { MethodKey methodKey = new MethodKey(BookmarksEntryServiceUtil.class, "unsubscribeEntry", _unsubscribeEntryParameterTypes22); MethodHandler methodHandler = new MethodHandler(methodKey, entryId); try { TunnelUtil.invoke(httpPrincipal, methodHandler); } catch (Exception e) { if (e instanceof com.liferay.portal.kernel.exception.PortalException) { throw (com.liferay.portal.kernel.exception.PortalException)e; } throw new com.liferay.portal.kernel.exception.SystemException(e); } } catch (com.liferay.portal.kernel.exception.SystemException se) { _log.error(se, se); throw se; } } public static com.liferay.bookmarks.model.BookmarksEntry updateEntry( HttpPrincipal httpPrincipal, long entryId, long groupId, long folderId, java.lang.String name, java.lang.String url, java.lang.String description, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException { try { MethodKey methodKey = new MethodKey(BookmarksEntryServiceUtil.class, "updateEntry", _updateEntryParameterTypes23); MethodHandler methodHandler = new MethodHandler(methodKey, entryId, groupId, folderId, name, url, description, serviceContext); Object returnObj = null; try { returnObj = TunnelUtil.invoke(httpPrincipal, methodHandler); } catch (Exception e) { if (e instanceof com.liferay.portal.kernel.exception.PortalException) { throw (com.liferay.portal.kernel.exception.PortalException)e; } throw new com.liferay.portal.kernel.exception.SystemException(e); } return (com.liferay.bookmarks.model.BookmarksEntry)returnObj; } catch (com.liferay.portal.kernel.exception.SystemException se) { _log.error(se, se); throw se; } } private static Log _log = LogFactoryUtil.getLog(BookmarksEntryServiceHttp.class); private static final Class<?>[] _addEntryParameterTypes0 = new Class[] { long.class, long.class, java.lang.String.class, java.lang.String.class, java.lang.String.class, com.liferay.portal.kernel.service.ServiceContext.class }; private static final Class<?>[] _deleteEntryParameterTypes1 = new Class[] { long.class }; private static final Class<?>[] _getEntriesParameterTypes2 = new Class[] { long.class, long.class, int.class, int.class }; private static final Class<?>[] _getEntriesParameterTypes3 = new Class[] { long.class, long.class, int.class, int.class, com.liferay.portal.kernel.util.OrderByComparator.class }; private static final Class<?>[] _getEntriesCountParameterTypes4 = new Class[] { long.class, long.class }; private static final Class<?>[] _getEntriesCountParameterTypes5 = new Class[] { long.class, long.class, int.class }; private static final Class<?>[] _getEntryParameterTypes6 = new Class[] { long.class }; private static final Class<?>[] _getFoldersEntriesCountParameterTypes7 = new Class[] { long.class, java.util.List.class }; private static final Class<?>[] _getGroupEntriesParameterTypes8 = new Class[] { long.class, int.class, int.class }; private static final Class<?>[] _getGroupEntriesParameterTypes9 = new Class[] { long.class, long.class, int.class, int.class }; private static final Class<?>[] _getGroupEntriesParameterTypes10 = new Class[] { long.class, long.class, long.class, int.class, int.class }; private static final Class<?>[] _getGroupEntriesCountParameterTypes11 = new Class[] { long.class }; private static final Class<?>[] _getGroupEntriesCountParameterTypes12 = new Class[] { long.class, long.class }; private static final Class<?>[] _getGroupEntriesCountParameterTypes13 = new Class[] { long.class, long.class, long.class }; private static final Class<?>[] _moveEntryParameterTypes14 = new Class[] { long.class, long.class }; private static final Class<?>[] _moveEntryFromTrashParameterTypes15 = new Class[] { long.class, long.class }; private static final Class<?>[] _moveEntryToTrashParameterTypes16 = new Class[] { long.class }; private static final Class<?>[] _openEntryParameterTypes17 = new Class[] { com.liferay.bookmarks.model.BookmarksEntry.class }; private static final Class<?>[] _openEntryParameterTypes18 = new Class[] { long.class }; private static final Class<?>[] _restoreEntryFromTrashParameterTypes19 = new Class[] { long.class }; private static final Class<?>[] _searchParameterTypes20 = new Class[] { long.class, long.class, int.class, int.class, int.class }; private static final Class<?>[] _subscribeEntryParameterTypes21 = new Class[] { long.class }; private static final Class<?>[] _unsubscribeEntryParameterTypes22 = new Class[] { long.class }; private static final Class<?>[] _updateEntryParameterTypes23 = new Class[] { long.class, long.class, long.class, java.lang.String.class, java.lang.String.class, java.lang.String.class, com.liferay.portal.kernel.service.ServiceContext.class }; }