com.liferay.bookmarks.service.base.BookmarksEntryServiceBaseImpl Maven / Gradle / Ivy
/**
* 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.base;
import com.liferay.bookmarks.model.BookmarksEntry;
import com.liferay.bookmarks.service.BookmarksEntryService;
import com.liferay.bookmarks.service.persistence.BookmarksEntryFinder;
import com.liferay.bookmarks.service.persistence.BookmarksEntryPersistence;
import com.liferay.bookmarks.service.persistence.BookmarksFolderFinder;
import com.liferay.bookmarks.service.persistence.BookmarksFolderPersistence;
import com.liferay.portal.aop.AopService;
import com.liferay.portal.kernel.dao.db.DB;
import com.liferay.portal.kernel.dao.db.DBManagerUtil;
import com.liferay.portal.kernel.dao.jdbc.SqlUpdate;
import com.liferay.portal.kernel.dao.jdbc.SqlUpdateFactoryUtil;
import com.liferay.portal.kernel.exception.SystemException;
import com.liferay.portal.kernel.module.framework.service.IdentifiableOSGiService;
import com.liferay.portal.kernel.service.BaseServiceImpl;
import com.liferay.portal.kernel.util.PortalUtil;
import javax.sql.DataSource;
import org.osgi.service.component.annotations.Reference;
/**
* Provides the base implementation for the bookmarks entry remote service.
*
*
* This implementation exists only as a container for the default service methods generated by ServiceBuilder. All custom service methods should be put in {@link com.liferay.bookmarks.service.impl.BookmarksEntryServiceImpl}.
*
*
* @author Brian Wing Shun Chan
* @see com.liferay.bookmarks.service.impl.BookmarksEntryServiceImpl
* @generated
*/
public abstract class BookmarksEntryServiceBaseImpl
extends BaseServiceImpl
implements AopService, BookmarksEntryService, IdentifiableOSGiService {
/*
* NOTE FOR DEVELOPERS:
*
* Never modify or reference this class directly. Use BookmarksEntryService
via injection or a org.osgi.util.tracker.ServiceTracker
or use com.liferay.bookmarks.service.BookmarksEntryServiceUtil
.
*/
@Override
public Class>[] getAopInterfaces() {
return new Class>[] {
BookmarksEntryService.class, IdentifiableOSGiService.class
};
}
@Override
public void setAopProxy(Object aopProxy) {
bookmarksEntryService = (BookmarksEntryService)aopProxy;
}
/**
* Returns the OSGi service identifier.
*
* @return the OSGi service identifier
*/
@Override
public String getOSGiServiceIdentifier() {
return BookmarksEntryService.class.getName();
}
protected Class> getModelClass() {
return BookmarksEntry.class;
}
protected String getModelClassName() {
return BookmarksEntry.class.getName();
}
/**
* Performs a SQL query.
*
* @param sql the sql query
*/
protected void runSQL(String sql) {
try {
DataSource dataSource = bookmarksEntryPersistence.getDataSource();
DB db = DBManagerUtil.getDB();
sql = db.buildSQL(sql);
sql = PortalUtil.transformSQL(sql);
SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(
dataSource, sql);
sqlUpdate.update();
}
catch (Exception exception) {
throw new SystemException(exception);
}
}
@Reference
protected com.liferay.bookmarks.service.BookmarksEntryLocalService
bookmarksEntryLocalService;
protected BookmarksEntryService bookmarksEntryService;
@Reference
protected BookmarksEntryPersistence bookmarksEntryPersistence;
@Reference
protected BookmarksEntryFinder bookmarksEntryFinder;
@Reference
protected BookmarksFolderPersistence bookmarksFolderPersistence;
@Reference
protected BookmarksFolderFinder bookmarksFolderFinder;
@Reference
protected com.liferay.counter.kernel.service.CounterLocalService
counterLocalService;
@Reference
protected com.liferay.portal.kernel.service.ClassNameLocalService
classNameLocalService;
@Reference
protected com.liferay.portal.kernel.service.ClassNameService
classNameService;
@Reference
protected com.liferay.portal.kernel.service.GroupLocalService
groupLocalService;
@Reference
protected com.liferay.portal.kernel.service.GroupService groupService;
@Reference
protected com.liferay.portal.kernel.service.ResourceLocalService
resourceLocalService;
@Reference
protected com.liferay.portal.kernel.service.UserLocalService
userLocalService;
@Reference
protected com.liferay.portal.kernel.service.UserService userService;
@Reference
protected com.liferay.asset.kernel.service.AssetEntryLocalService
assetEntryLocalService;
@Reference
protected com.liferay.asset.kernel.service.AssetEntryService
assetEntryService;
@Reference
protected com.liferay.asset.kernel.service.AssetLinkLocalService
assetLinkLocalService;
@Reference
protected com.liferay.expando.kernel.service.ExpandoRowLocalService
expandoRowLocalService;
@Reference
protected com.liferay.ratings.kernel.service.RatingsStatsLocalService
ratingsStatsLocalService;
@Reference
protected com.liferay.social.kernel.service.SocialActivityLocalService
socialActivityLocalService;
@Reference
protected com.liferay.social.kernel.service.SocialActivityService
socialActivityService;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy