All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.liferay.bookmarks.service.http.BookmarksEntryServiceHttp Maven / Gradle / Ivy

The newest version!
/**
 * SPDX-FileCopyrightText: (c) 2000 Liferay, Inc. https://liferay.com
 * SPDX-License-Identifier: LGPL-2.1-or-later OR LicenseRef-Liferay-DXP-EULA-2.0.0-2023-06
 */

package com.liferay.bookmarks.service.http;

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
 * 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
 * HttpPrincipal parameter.
 *
 * 

* 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. *

* *

* Set the property tunnel.servlet.hosts.allowed in portal.properties to * configure security. *

* *

* The HTTP utility is only generated for remote services. *

* * @author Brian Wing Shun Chan * @generated */ public class BookmarksEntryServiceHttp { public static com.liferay.bookmarks.model.BookmarksEntry addEntry( HttpPrincipal httpPrincipal, long groupId, long folderId, String name, String url, 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 exception) { if (exception instanceof com.liferay.portal.kernel.exception.PortalException) { throw (com.liferay.portal.kernel.exception.PortalException) exception; } throw new com.liferay.portal.kernel.exception.SystemException( exception); } return (com.liferay.bookmarks.model.BookmarksEntry)returnObj; } catch (com.liferay.portal.kernel.exception.SystemException systemException) { _log.error(systemException, systemException); throw systemException; } } 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 exception) { if (exception instanceof com.liferay.portal.kernel.exception.PortalException) { throw (com.liferay.portal.kernel.exception.PortalException) exception; } throw new com.liferay.portal.kernel.exception.SystemException( exception); } } catch (com.liferay.portal.kernel.exception.SystemException systemException) { _log.error(systemException, systemException); throw systemException; } } public static java.util.List 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 exception) { throw new com.liferay.portal.kernel.exception.SystemException( exception); } return (java.util.List) returnObj; } catch (com.liferay.portal.kernel.exception.SystemException systemException) { _log.error(systemException, systemException); throw systemException; } } public static java.util.List getEntries( HttpPrincipal httpPrincipal, long groupId, long folderId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator 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 exception) { throw new com.liferay.portal.kernel.exception.SystemException( exception); } return (java.util.List) returnObj; } catch (com.liferay.portal.kernel.exception.SystemException systemException) { _log.error(systemException, systemException); throw systemException; } } 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 exception) { throw new com.liferay.portal.kernel.exception.SystemException( exception); } return ((Integer)returnObj).intValue(); } catch (com.liferay.portal.kernel.exception.SystemException systemException) { _log.error(systemException, systemException); throw systemException; } } 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 exception) { throw new com.liferay.portal.kernel.exception.SystemException( exception); } return ((Integer)returnObj).intValue(); } catch (com.liferay.portal.kernel.exception.SystemException systemException) { _log.error(systemException, systemException); throw systemException; } } 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 exception) { if (exception instanceof com.liferay.portal.kernel.exception.PortalException) { throw (com.liferay.portal.kernel.exception.PortalException) exception; } throw new com.liferay.portal.kernel.exception.SystemException( exception); } return (com.liferay.bookmarks.model.BookmarksEntry)returnObj; } catch (com.liferay.portal.kernel.exception.SystemException systemException) { _log.error(systemException, systemException); throw systemException; } } public static int getFoldersEntriesCount( HttpPrincipal httpPrincipal, long groupId, java.util.List 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 exception) { throw new com.liferay.portal.kernel.exception.SystemException( exception); } return ((Integer)returnObj).intValue(); } catch (com.liferay.portal.kernel.exception.SystemException systemException) { _log.error(systemException, systemException); throw systemException; } } public static java.util.List 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 exception) { if (exception instanceof com.liferay.portal.kernel.exception.PortalException) { throw (com.liferay.portal.kernel.exception.PortalException) exception; } throw new com.liferay.portal.kernel.exception.SystemException( exception); } return (java.util.List) returnObj; } catch (com.liferay.portal.kernel.exception.SystemException systemException) { _log.error(systemException, systemException); throw systemException; } } public static java.util.List 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 exception) { if (exception instanceof com.liferay.portal.kernel.exception.PortalException) { throw (com.liferay.portal.kernel.exception.PortalException) exception; } throw new com.liferay.portal.kernel.exception.SystemException( exception); } return (java.util.List) returnObj; } catch (com.liferay.portal.kernel.exception.SystemException systemException) { _log.error(systemException, systemException); throw systemException; } } public static java.util.List 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 exception) { if (exception instanceof com.liferay.portal.kernel.exception.PortalException) { throw (com.liferay.portal.kernel.exception.PortalException) exception; } throw new com.liferay.portal.kernel.exception.SystemException( exception); } return (java.util.List) returnObj; } catch (com.liferay.portal.kernel.exception.SystemException systemException) { _log.error(systemException, systemException); throw systemException; } } 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 exception) { if (exception instanceof com.liferay.portal.kernel.exception.PortalException) { throw (com.liferay.portal.kernel.exception.PortalException) exception; } throw new com.liferay.portal.kernel.exception.SystemException( exception); } return ((Integer)returnObj).intValue(); } catch (com.liferay.portal.kernel.exception.SystemException systemException) { _log.error(systemException, systemException); throw systemException; } } 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 exception) { if (exception instanceof com.liferay.portal.kernel.exception.PortalException) { throw (com.liferay.portal.kernel.exception.PortalException) exception; } throw new com.liferay.portal.kernel.exception.SystemException( exception); } return ((Integer)returnObj).intValue(); } catch (com.liferay.portal.kernel.exception.SystemException systemException) { _log.error(systemException, systemException); throw systemException; } } 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 exception) { if (exception instanceof com.liferay.portal.kernel.exception.PortalException) { throw (com.liferay.portal.kernel.exception.PortalException) exception; } throw new com.liferay.portal.kernel.exception.SystemException( exception); } return ((Integer)returnObj).intValue(); } catch (com.liferay.portal.kernel.exception.SystemException systemException) { _log.error(systemException, systemException); throw systemException; } } 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 exception) { if (exception instanceof com.liferay.portal.kernel.exception.PortalException) { throw (com.liferay.portal.kernel.exception.PortalException) exception; } throw new com.liferay.portal.kernel.exception.SystemException( exception); } return (com.liferay.bookmarks.model.BookmarksEntry)returnObj; } catch (com.liferay.portal.kernel.exception.SystemException systemException) { _log.error(systemException, systemException); throw systemException; } } 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 exception) { if (exception instanceof com.liferay.portal.kernel.exception.PortalException) { throw (com.liferay.portal.kernel.exception.PortalException) exception; } throw new com.liferay.portal.kernel.exception.SystemException( exception); } return (com.liferay.bookmarks.model.BookmarksEntry)returnObj; } catch (com.liferay.portal.kernel.exception.SystemException systemException) { _log.error(systemException, systemException); throw systemException; } } 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 exception) { if (exception instanceof com.liferay.portal.kernel.exception.PortalException) { throw (com.liferay.portal.kernel.exception.PortalException) exception; } throw new com.liferay.portal.kernel.exception.SystemException( exception); } return (com.liferay.bookmarks.model.BookmarksEntry)returnObj; } catch (com.liferay.portal.kernel.exception.SystemException systemException) { _log.error(systemException, systemException); throw systemException; } } 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 exception) { if (exception instanceof com.liferay.portal.kernel.exception.PortalException) { throw (com.liferay.portal.kernel.exception.PortalException) exception; } throw new com.liferay.portal.kernel.exception.SystemException( exception); } return (com.liferay.bookmarks.model.BookmarksEntry)returnObj; } catch (com.liferay.portal.kernel.exception.SystemException systemException) { _log.error(systemException, systemException); throw systemException; } } 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 exception) { if (exception instanceof com.liferay.portal.kernel.exception.PortalException) { throw (com.liferay.portal.kernel.exception.PortalException) exception; } throw new com.liferay.portal.kernel.exception.SystemException( exception); } return (com.liferay.bookmarks.model.BookmarksEntry)returnObj; } catch (com.liferay.portal.kernel.exception.SystemException systemException) { _log.error(systemException, systemException); throw systemException; } } 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 exception) { if (exception instanceof com.liferay.portal.kernel.exception.PortalException) { throw (com.liferay.portal.kernel.exception.PortalException) exception; } throw new com.liferay.portal.kernel.exception.SystemException( exception); } } catch (com.liferay.portal.kernel.exception.SystemException systemException) { _log.error(systemException, systemException); throw systemException; } } 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 exception) { if (exception instanceof com.liferay.portal.kernel.exception.PortalException) { throw (com.liferay.portal.kernel.exception.PortalException) exception; } throw new com.liferay.portal.kernel.exception.SystemException( exception); } return (com.liferay.portal.kernel.search.Hits)returnObj; } catch (com.liferay.portal.kernel.exception.SystemException systemException) { _log.error(systemException, systemException); throw systemException; } } 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 exception) { if (exception instanceof com.liferay.portal.kernel.exception.PortalException) { throw (com.liferay.portal.kernel.exception.PortalException) exception; } throw new com.liferay.portal.kernel.exception.SystemException( exception); } } catch (com.liferay.portal.kernel.exception.SystemException systemException) { _log.error(systemException, systemException); throw systemException; } } 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 exception) { if (exception instanceof com.liferay.portal.kernel.exception.PortalException) { throw (com.liferay.portal.kernel.exception.PortalException) exception; } throw new com.liferay.portal.kernel.exception.SystemException( exception); } } catch (com.liferay.portal.kernel.exception.SystemException systemException) { _log.error(systemException, systemException); throw systemException; } } public static com.liferay.bookmarks.model.BookmarksEntry updateEntry( HttpPrincipal httpPrincipal, long entryId, long groupId, long folderId, String name, String url, 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 exception) { if (exception instanceof com.liferay.portal.kernel.exception.PortalException) { throw (com.liferay.portal.kernel.exception.PortalException) exception; } throw new com.liferay.portal.kernel.exception.SystemException( exception); } return (com.liferay.bookmarks.model.BookmarksEntry)returnObj; } catch (com.liferay.portal.kernel.exception.SystemException systemException) { _log.error(systemException, systemException); throw systemException; } } private static Log _log = LogFactoryUtil.getLog( BookmarksEntryServiceHttp.class); private static final Class[] _addEntryParameterTypes0 = new Class[] { long.class, long.class, String.class, String.class, 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, String.class, String.class, String.class, com.liferay.portal.kernel.service.ServiceContext.class }; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy