Package com.liferay.portal.service.base
Class UserGroupRoleServiceBaseImpl
Object
com.liferay.portal.kernel.service.BaseServiceImpl
com.liferay.portal.service.base.UserGroupRoleServiceBaseImpl
- All Implemented Interfaces:
com.liferay.portal.kernel.module.framework.service.IdentifiableOSGiService
,com.liferay.portal.kernel.service.BaseService
,com.liferay.portal.kernel.service.UserGroupRoleService
- Direct Known Subclasses:
UserGroupRoleServiceImpl
public abstract class UserGroupRoleServiceBaseImpl
extends com.liferay.portal.kernel.service.BaseServiceImpl
implements com.liferay.portal.kernel.module.framework.service.IdentifiableOSGiService, com.liferay.portal.kernel.service.UserGroupRoleService
Provides the base implementation for the user group role 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 UserGroupRoleServiceImpl
.
- Author:
- Brian Wing Shun Chan
- See Also:
- {$generated.description}
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected com.liferay.counter.kernel.service.CounterLocalService
protected com.liferay.portal.kernel.service.persistence.UserGroupRoleFinder
protected com.liferay.portal.kernel.service.UserGroupRoleLocalService
protected com.liferay.portal.kernel.service.persistence.UserGroupRolePersistence
protected com.liferay.portal.kernel.service.UserGroupRoleService
Fields inherited from class com.liferay.portal.kernel.service.BaseServiceImpl
ANONYMOUS_NAMES, JRUN_ANONYMOUS, ORACLE_ANONYMOUS, SUN_ANONYMOUS, WEBLOGIC_ANONYMOUS
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
void
destroy()
com.liferay.counter.kernel.service.CounterLocalService
Returns the counter local service.protected Class<?>
protected String
Returns the OSGi service identifier.com.liferay.portal.kernel.service.persistence.UserGroupRoleFinder
Returns the user group role finder.com.liferay.portal.kernel.service.UserGroupRoleLocalService
Returns the user group role local service.com.liferay.portal.kernel.service.persistence.UserGroupRolePersistence
Returns the user group role persistence.com.liferay.portal.kernel.service.UserGroupRoleService
Returns the user group role remote service.protected void
Performs a SQL query.void
setCounterLocalService
(com.liferay.counter.kernel.service.CounterLocalService counterLocalService) Sets the counter local service.void
setUserGroupRoleFinder
(com.liferay.portal.kernel.service.persistence.UserGroupRoleFinder userGroupRoleFinder) Sets the user group role finder.void
setUserGroupRoleLocalService
(com.liferay.portal.kernel.service.UserGroupRoleLocalService userGroupRoleLocalService) Sets the user group role local service.void
setUserGroupRolePersistence
(com.liferay.portal.kernel.service.persistence.UserGroupRolePersistence userGroupRolePersistence) Sets the user group role persistence.void
setUserGroupRoleService
(com.liferay.portal.kernel.service.UserGroupRoleService userGroupRoleService) Sets the user group role remote service.Methods inherited from class com.liferay.portal.kernel.service.BaseServiceImpl
getClassLoader, getGuestOrUser, getGuestOrUserId, getPermissionChecker, getUser, getUserId
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.liferay.portal.kernel.service.UserGroupRoleService
addUserGroupRoles, addUserGroupRoles, deleteUserGroupRoles, deleteUserGroupRoles, updateUserGroupRoles
-
Field Details
-
userGroupRoleLocalService
@BeanReference(type=com.liferay.portal.kernel.service.UserGroupRoleLocalService.class) protected com.liferay.portal.kernel.service.UserGroupRoleLocalService userGroupRoleLocalService -
userGroupRoleService
@BeanReference(type=com.liferay.portal.kernel.service.UserGroupRoleService.class) protected com.liferay.portal.kernel.service.UserGroupRoleService userGroupRoleService -
userGroupRolePersistence
@BeanReference(type=com.liferay.portal.kernel.service.persistence.UserGroupRolePersistence.class) protected com.liferay.portal.kernel.service.persistence.UserGroupRolePersistence userGroupRolePersistence -
userGroupRoleFinder
@BeanReference(type=com.liferay.portal.kernel.service.persistence.UserGroupRoleFinder.class) protected com.liferay.portal.kernel.service.persistence.UserGroupRoleFinder userGroupRoleFinder -
counterLocalService
@BeanReference(type=com.liferay.counter.kernel.service.CounterLocalService.class) protected com.liferay.counter.kernel.service.CounterLocalService counterLocalService
-
-
Constructor Details
-
UserGroupRoleServiceBaseImpl
public UserGroupRoleServiceBaseImpl()
-
-
Method Details
-
getUserGroupRoleLocalService
public com.liferay.portal.kernel.service.UserGroupRoleLocalService getUserGroupRoleLocalService()Returns the user group role local service.- Returns:
- the user group role local service
-
setUserGroupRoleLocalService
public void setUserGroupRoleLocalService(com.liferay.portal.kernel.service.UserGroupRoleLocalService userGroupRoleLocalService) Sets the user group role local service.- Parameters:
userGroupRoleLocalService
- the user group role local service
-
getUserGroupRoleService
public com.liferay.portal.kernel.service.UserGroupRoleService getUserGroupRoleService()Returns the user group role remote service.- Returns:
- the user group role remote service
-
setUserGroupRoleService
public void setUserGroupRoleService(com.liferay.portal.kernel.service.UserGroupRoleService userGroupRoleService) Sets the user group role remote service.- Parameters:
userGroupRoleService
- the user group role remote service
-
getUserGroupRolePersistence
public com.liferay.portal.kernel.service.persistence.UserGroupRolePersistence getUserGroupRolePersistence()Returns the user group role persistence.- Returns:
- the user group role persistence
-
setUserGroupRolePersistence
public void setUserGroupRolePersistence(com.liferay.portal.kernel.service.persistence.UserGroupRolePersistence userGroupRolePersistence) Sets the user group role persistence.- Parameters:
userGroupRolePersistence
- the user group role persistence
-
getUserGroupRoleFinder
public com.liferay.portal.kernel.service.persistence.UserGroupRoleFinder getUserGroupRoleFinder()Returns the user group role finder.- Returns:
- the user group role finder
-
setUserGroupRoleFinder
public void setUserGroupRoleFinder(com.liferay.portal.kernel.service.persistence.UserGroupRoleFinder userGroupRoleFinder) Sets the user group role finder.- Parameters:
userGroupRoleFinder
- the user group role finder
-
getCounterLocalService
public com.liferay.counter.kernel.service.CounterLocalService getCounterLocalService()Returns the counter local service.- Returns:
- the counter local service
-
setCounterLocalService
public void setCounterLocalService(com.liferay.counter.kernel.service.CounterLocalService counterLocalService) Sets the counter local service.- Parameters:
counterLocalService
- the counter local service
-
afterPropertiesSet
public void afterPropertiesSet() -
destroy
public void destroy() -
getOSGiServiceIdentifier
Returns the OSGi service identifier.- Specified by:
getOSGiServiceIdentifier
in interfacecom.liferay.portal.kernel.module.framework.service.IdentifiableOSGiService
- Specified by:
getOSGiServiceIdentifier
in interfacecom.liferay.portal.kernel.service.UserGroupRoleService
- Returns:
- the OSGi service identifier
-
getModelClass
-
getModelClassName
-
runSQL
Performs a SQL query.- Parameters:
sql
- the sql query
-