com.liferay.message.boards.internal.service.MBMessageUserLocalServiceWrapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.liferay.message.boards.service
Show all versions of com.liferay.message.boards.service
Liferay Message Boards Service
/**
* 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.message.boards.internal.service;
import com.liferay.message.boards.model.MBMessage;
import com.liferay.message.boards.service.MBMessageLocalService;
import com.liferay.portal.kernel.exception.PortalException;
import com.liferay.portal.kernel.model.User;
import com.liferay.portal.kernel.model.UserGroupRole;
import com.liferay.portal.kernel.service.ServiceContext;
import com.liferay.portal.kernel.service.ServiceWrapper;
import com.liferay.portal.kernel.service.UserLocalServiceWrapper;
import com.liferay.portal.kernel.util.GetterUtil;
import com.liferay.portal.kernel.util.PropsKeys;
import com.liferay.portal.kernel.util.PropsUtil;
import java.util.List;
import org.osgi.service.component.annotations.Component;
import org.osgi.service.component.annotations.Reference;
/**
* @author Sergio González
*/
@Component(service = ServiceWrapper.class)
public class MBMessageUserLocalServiceWrapper extends UserLocalServiceWrapper {
@Override
public User updateUser(
long userId, String oldPassword, String newPassword1,
String newPassword2, boolean passwordReset,
String reminderQueryQuestion, String reminderQueryAnswer,
String screenName, String emailAddress, boolean portrait,
byte[] portraitBytes, String languageId, String timeZoneId,
String greeting, String comments, String firstName,
String middleName, String lastName, long prefixListTypeId,
long suffixListTypeId, boolean male, int birthdayMonth,
int birthdayDay, int birthdayYear, String smsSn, String facebookSn,
String jabberSn, String skypeSn, String twitterSn, String jobTitle,
long[] groupIds, long[] organizationIds, long[] roleIds,
List userGroupRoles, long[] userGroupIds,
ServiceContext serviceContext)
throws PortalException {
User user = getUser(userId);
String oldFullName = user.getFullName();
User curUser = super.updateUser(
userId, oldPassword, newPassword1, newPassword2, passwordReset,
reminderQueryQuestion, reminderQueryAnswer, screenName,
emailAddress, portrait, portraitBytes, languageId, timeZoneId,
greeting, comments, firstName, middleName, lastName,
prefixListTypeId, suffixListTypeId, male, birthdayMonth,
birthdayDay, birthdayYear, smsSn, facebookSn, jabberSn, skypeSn,
twitterSn, jobTitle, groupIds, organizationIds, roleIds,
userGroupRoles, userGroupIds, serviceContext);
if (GetterUtil.getBoolean(
PropsUtil.get(
PropsKeys.USERS_UPDATE_USER_NAME +
MBMessage.class.getName())) &&
!oldFullName.equals(curUser.getFullName())) {
_mbMessageLocalService.updateUserName(
userId, curUser.getFullName());
}
return curUser;
}
@Reference
private MBMessageLocalService _mbMessageLocalService;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy