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

com.liferay.portal.model.impl.RoleModelImpl 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.portal.model.impl;

import com.liferay.expando.kernel.model.ExpandoBridge;
import com.liferay.expando.kernel.util.ExpandoBridgeFactoryUtil;
import com.liferay.exportimport.kernel.lar.StagedModelType;
import com.liferay.petra.string.StringBundler;
import com.liferay.portal.kernel.bean.AutoEscapeBeanHandler;
import com.liferay.portal.kernel.exception.LocaleException;
import com.liferay.portal.kernel.exception.PortalException;
import com.liferay.portal.kernel.json.JSON;
import com.liferay.portal.kernel.model.CacheModel;
import com.liferay.portal.kernel.model.ModelWrapper;
import com.liferay.portal.kernel.model.Role;
import com.liferay.portal.kernel.model.RoleModel;
import com.liferay.portal.kernel.model.User;
import com.liferay.portal.kernel.model.impl.BaseModelImpl;
import com.liferay.portal.kernel.service.ServiceContext;
import com.liferay.portal.kernel.service.UserLocalServiceUtil;
import com.liferay.portal.kernel.util.GetterUtil;
import com.liferay.portal.kernel.util.LocaleUtil;
import com.liferay.portal.kernel.util.LocalizationUtil;
import com.liferay.portal.kernel.util.PortalUtil;
import com.liferay.portal.kernel.util.ProxyUtil;
import com.liferay.portal.kernel.util.StringUtil;
import com.liferay.portal.kernel.util.Validator;

import java.io.Serializable;

import java.lang.reflect.InvocationHandler;

import java.sql.Blob;
import java.sql.Types;

import java.util.Collections;
import java.util.Date;
import java.util.HashMap;
import java.util.LinkedHashMap;
import java.util.Locale;
import java.util.Map;
import java.util.Objects;
import java.util.Set;
import java.util.TreeSet;
import java.util.function.BiConsumer;
import java.util.function.Function;

/**
 * The base model implementation for the Role service. Represents a row in the "Role_" database table, with each column mapped to a property of this class.
 *
 * 

* This implementation and its corresponding interface RoleModel exist only as a container for the default property accessors generated by ServiceBuilder. Helper methods and all application logic should be put in {@link RoleImpl}. *

* * @author Brian Wing Shun Chan * @see RoleImpl * @generated */ @JSON(strict = true) public class RoleModelImpl extends BaseModelImpl implements RoleModel { /* * NOTE FOR DEVELOPERS: * * Never modify or reference this class directly. All methods that expect a role model instance should use the Role interface instead. */ public static final String TABLE_NAME = "Role_"; public static final Object[][] TABLE_COLUMNS = { {"mvccVersion", Types.BIGINT}, {"ctCollectionId", Types.BIGINT}, {"uuid_", Types.VARCHAR}, {"roleId", Types.BIGINT}, {"companyId", Types.BIGINT}, {"userId", Types.BIGINT}, {"userName", Types.VARCHAR}, {"createDate", Types.TIMESTAMP}, {"modifiedDate", Types.TIMESTAMP}, {"classNameId", Types.BIGINT}, {"classPK", Types.BIGINT}, {"name", Types.VARCHAR}, {"title", Types.VARCHAR}, {"description", Types.CLOB}, {"type_", Types.INTEGER}, {"subtype", Types.VARCHAR} }; public static final Map TABLE_COLUMNS_MAP = new HashMap(); static { TABLE_COLUMNS_MAP.put("mvccVersion", Types.BIGINT); TABLE_COLUMNS_MAP.put("ctCollectionId", Types.BIGINT); TABLE_COLUMNS_MAP.put("uuid_", Types.VARCHAR); TABLE_COLUMNS_MAP.put("roleId", Types.BIGINT); TABLE_COLUMNS_MAP.put("companyId", Types.BIGINT); TABLE_COLUMNS_MAP.put("userId", Types.BIGINT); TABLE_COLUMNS_MAP.put("userName", Types.VARCHAR); TABLE_COLUMNS_MAP.put("createDate", Types.TIMESTAMP); TABLE_COLUMNS_MAP.put("modifiedDate", Types.TIMESTAMP); TABLE_COLUMNS_MAP.put("classNameId", Types.BIGINT); TABLE_COLUMNS_MAP.put("classPK", Types.BIGINT); TABLE_COLUMNS_MAP.put("name", Types.VARCHAR); TABLE_COLUMNS_MAP.put("title", Types.VARCHAR); TABLE_COLUMNS_MAP.put("description", Types.CLOB); TABLE_COLUMNS_MAP.put("type_", Types.INTEGER); TABLE_COLUMNS_MAP.put("subtype", Types.VARCHAR); } public static final String TABLE_SQL_CREATE = "create table Role_ (mvccVersion LONG default 0 not null,ctCollectionId LONG default 0 not null,uuid_ VARCHAR(75) null,roleId LONG not null,companyId LONG,userId LONG,userName VARCHAR(75) null,createDate DATE null,modifiedDate DATE null,classNameId LONG,classPK LONG,name VARCHAR(75) null,title STRING null,description TEXT null,type_ INTEGER,subtype VARCHAR(75) null,primary key (roleId, ctCollectionId))"; public static final String TABLE_SQL_DROP = "drop table Role_"; public static final String ORDER_BY_JPQL = " ORDER BY role_.name ASC"; public static final String ORDER_BY_SQL = " ORDER BY Role_.name ASC"; public static final String DATA_SOURCE = "liferayDataSource"; public static final String SESSION_FACTORY = "liferaySessionFactory"; public static final String TX_MANAGER = "liferayTransactionManager"; /** * @deprecated As of Athanasius (7.3.x), with no direct replacement */ @Deprecated public static final boolean ENTITY_CACHE_ENABLED = true; /** * @deprecated As of Athanasius (7.3.x), with no direct replacement */ @Deprecated public static final boolean FINDER_CACHE_ENABLED = true; /** * @deprecated As of Athanasius (7.3.x), with no direct replacement */ @Deprecated public static final boolean COLUMN_BITMASK_ENABLED = true; /** * @deprecated As of Athanasius (7.3.x), replaced by {@link #getColumnBitmask(String)} */ @Deprecated public static final long CLASSNAMEID_COLUMN_BITMASK = 1L; /** * @deprecated As of Athanasius (7.3.x), replaced by {@link #getColumnBitmask(String)} */ @Deprecated public static final long CLASSPK_COLUMN_BITMASK = 2L; /** * @deprecated As of Athanasius (7.3.x), replaced by {@link #getColumnBitmask(String)} */ @Deprecated public static final long COMPANYID_COLUMN_BITMASK = 4L; /** * @deprecated As of Athanasius (7.3.x), replaced by {@link #getColumnBitmask(String)} */ @Deprecated public static final long NAME_COLUMN_BITMASK = 8L; /** * @deprecated As of Athanasius (7.3.x), replaced by {@link #getColumnBitmask(String)} */ @Deprecated public static final long SUBTYPE_COLUMN_BITMASK = 16L; /** * @deprecated As of Athanasius (7.3.x), replaced by {@link #getColumnBitmask(String)} */ @Deprecated public static final long TYPE_COLUMN_BITMASK = 32L; /** * @deprecated As of Athanasius (7.3.x), replaced by {@link #getColumnBitmask(String)} */ @Deprecated public static final long UUID_COLUMN_BITMASK = 64L; public static final String MAPPING_TABLE_GROUPS_ROLES_NAME = "Groups_Roles"; public static final Object[][] MAPPING_TABLE_GROUPS_ROLES_COLUMNS = { {"companyId", Types.BIGINT}, {"groupId", Types.BIGINT}, {"roleId", Types.BIGINT} }; public static final String MAPPING_TABLE_GROUPS_ROLES_SQL_CREATE = "create table Groups_Roles (companyId LONG not null,groupId LONG not null,roleId LONG not null,ctCollectionId LONG default 0 not null,ctChangeType BOOLEAN,primary key (groupId, roleId, ctCollectionId))"; /** * @deprecated As of Athanasius (7.3.x), with no direct replacement */ @Deprecated public static final boolean FINDER_CACHE_ENABLED_GROUPS_ROLES = true; public static final String MAPPING_TABLE_USERS_ROLES_NAME = "Users_Roles"; public static final Object[][] MAPPING_TABLE_USERS_ROLES_COLUMNS = { {"companyId", Types.BIGINT}, {"roleId", Types.BIGINT}, {"userId", Types.BIGINT} }; public static final String MAPPING_TABLE_USERS_ROLES_SQL_CREATE = "create table Users_Roles (companyId LONG not null,roleId LONG not null,userId LONG not null,ctCollectionId LONG default 0 not null,ctChangeType BOOLEAN,primary key (roleId, userId, ctCollectionId))"; /** * @deprecated As of Athanasius (7.3.x), with no direct replacement */ @Deprecated public static final boolean FINDER_CACHE_ENABLED_USERS_ROLES = true; public static final long LOCK_EXPIRATION_TIME = GetterUtil.getLong( com.liferay.portal.util.PropsUtil.get( "lock.expiration.time.com.liferay.portal.kernel.model.Role")); public RoleModelImpl() { } @Override public long getPrimaryKey() { return _roleId; } @Override public void setPrimaryKey(long primaryKey) { setRoleId(primaryKey); } @Override public Serializable getPrimaryKeyObj() { return _roleId; } @Override public void setPrimaryKeyObj(Serializable primaryKeyObj) { setPrimaryKey(((Long)primaryKeyObj).longValue()); } @Override public Class getModelClass() { return Role.class; } @Override public String getModelClassName() { return Role.class.getName(); } @Override public Map getModelAttributes() { Map attributes = new HashMap(); Map> attributeGetterFunctions = getAttributeGetterFunctions(); for (Map.Entry> entry : attributeGetterFunctions.entrySet()) { String attributeName = entry.getKey(); Function attributeGetterFunction = entry.getValue(); attributes.put( attributeName, attributeGetterFunction.apply((Role)this)); } return attributes; } @Override public void setModelAttributes(Map attributes) { Map> attributeSetterBiConsumers = getAttributeSetterBiConsumers(); for (Map.Entry entry : attributes.entrySet()) { String attributeName = entry.getKey(); BiConsumer attributeSetterBiConsumer = attributeSetterBiConsumers.get(attributeName); if (attributeSetterBiConsumer != null) { attributeSetterBiConsumer.accept((Role)this, entry.getValue()); } } } public Map> getAttributeGetterFunctions() { return _attributeGetterFunctions; } public Map> getAttributeSetterBiConsumers() { return _attributeSetterBiConsumers; } private static final Map> _attributeGetterFunctions; private static final Map> _attributeSetterBiConsumers; static { Map> attributeGetterFunctions = new LinkedHashMap>(); Map> attributeSetterBiConsumers = new LinkedHashMap>(); attributeGetterFunctions.put("mvccVersion", Role::getMvccVersion); attributeSetterBiConsumers.put( "mvccVersion", (BiConsumer)Role::setMvccVersion); attributeGetterFunctions.put("ctCollectionId", Role::getCtCollectionId); attributeSetterBiConsumers.put( "ctCollectionId", (BiConsumer)Role::setCtCollectionId); attributeGetterFunctions.put("uuid", Role::getUuid); attributeSetterBiConsumers.put( "uuid", (BiConsumer)Role::setUuid); attributeGetterFunctions.put("roleId", Role::getRoleId); attributeSetterBiConsumers.put( "roleId", (BiConsumer)Role::setRoleId); attributeGetterFunctions.put("companyId", Role::getCompanyId); attributeSetterBiConsumers.put( "companyId", (BiConsumer)Role::setCompanyId); attributeGetterFunctions.put("userId", Role::getUserId); attributeSetterBiConsumers.put( "userId", (BiConsumer)Role::setUserId); attributeGetterFunctions.put("userName", Role::getUserName); attributeSetterBiConsumers.put( "userName", (BiConsumer)Role::setUserName); attributeGetterFunctions.put("createDate", Role::getCreateDate); attributeSetterBiConsumers.put( "createDate", (BiConsumer)Role::setCreateDate); attributeGetterFunctions.put("modifiedDate", Role::getModifiedDate); attributeSetterBiConsumers.put( "modifiedDate", (BiConsumer)Role::setModifiedDate); attributeGetterFunctions.put("classNameId", Role::getClassNameId); attributeSetterBiConsumers.put( "classNameId", (BiConsumer)Role::setClassNameId); attributeGetterFunctions.put("classPK", Role::getClassPK); attributeSetterBiConsumers.put( "classPK", (BiConsumer)Role::setClassPK); attributeGetterFunctions.put("name", Role::getName); attributeSetterBiConsumers.put( "name", (BiConsumer)Role::setName); attributeGetterFunctions.put("title", Role::getTitle); attributeSetterBiConsumers.put( "title", (BiConsumer)Role::setTitle); attributeGetterFunctions.put("description", Role::getDescription); attributeSetterBiConsumers.put( "description", (BiConsumer)Role::setDescription); attributeGetterFunctions.put("type", Role::getType); attributeSetterBiConsumers.put( "type", (BiConsumer)Role::setType); attributeGetterFunctions.put("subtype", Role::getSubtype); attributeSetterBiConsumers.put( "subtype", (BiConsumer)Role::setSubtype); _attributeGetterFunctions = Collections.unmodifiableMap( attributeGetterFunctions); _attributeSetterBiConsumers = Collections.unmodifiableMap( (Map)attributeSetterBiConsumers); } @JSON @Override public long getMvccVersion() { return _mvccVersion; } @Override public void setMvccVersion(long mvccVersion) { if (_columnOriginalValues == Collections.EMPTY_MAP) { _setColumnOriginalValues(); } _mvccVersion = mvccVersion; } @JSON @Override public long getCtCollectionId() { return _ctCollectionId; } @Override public void setCtCollectionId(long ctCollectionId) { if (_columnOriginalValues == Collections.EMPTY_MAP) { _setColumnOriginalValues(); } _ctCollectionId = ctCollectionId; } @JSON @Override public String getUuid() { if (_uuid == null) { return ""; } else { return _uuid; } } @Override public void setUuid(String uuid) { if (_columnOriginalValues == Collections.EMPTY_MAP) { _setColumnOriginalValues(); } _uuid = uuid; } /** * @deprecated As of Athanasius (7.3.x), replaced by {@link * #getColumnOriginalValue(String)} */ @Deprecated public String getOriginalUuid() { return getColumnOriginalValue("uuid_"); } @JSON @Override public long getRoleId() { return _roleId; } @Override public void setRoleId(long roleId) { if (_columnOriginalValues == Collections.EMPTY_MAP) { _setColumnOriginalValues(); } _roleId = roleId; } @JSON @Override public long getCompanyId() { return _companyId; } @Override public void setCompanyId(long companyId) { if (_columnOriginalValues == Collections.EMPTY_MAP) { _setColumnOriginalValues(); } _companyId = companyId; } /** * @deprecated As of Athanasius (7.3.x), replaced by {@link * #getColumnOriginalValue(String)} */ @Deprecated public long getOriginalCompanyId() { return GetterUtil.getLong( this.getColumnOriginalValue("companyId")); } @JSON @Override public long getUserId() { return _userId; } @Override public void setUserId(long userId) { if (_columnOriginalValues == Collections.EMPTY_MAP) { _setColumnOriginalValues(); } _userId = userId; } @Override public String getUserUuid() { try { User user = UserLocalServiceUtil.getUserById(getUserId()); return user.getUuid(); } catch (PortalException portalException) { return ""; } } @Override public void setUserUuid(String userUuid) { } @JSON @Override public String getUserName() { if (_userName == null) { return ""; } else { return _userName; } } @Override public void setUserName(String userName) { if (_columnOriginalValues == Collections.EMPTY_MAP) { _setColumnOriginalValues(); } _userName = userName; } @JSON @Override public Date getCreateDate() { return _createDate; } @Override public void setCreateDate(Date createDate) { if (_columnOriginalValues == Collections.EMPTY_MAP) { _setColumnOriginalValues(); } _createDate = createDate; } @JSON @Override public Date getModifiedDate() { return _modifiedDate; } public boolean hasSetModifiedDate() { return _setModifiedDate; } @Override public void setModifiedDate(Date modifiedDate) { _setModifiedDate = true; if (_columnOriginalValues == Collections.EMPTY_MAP) { _setColumnOriginalValues(); } _modifiedDate = modifiedDate; } @Override public String getClassName() { if (getClassNameId() <= 0) { return ""; } return PortalUtil.getClassName(getClassNameId()); } @Override public void setClassName(String className) { long classNameId = 0; if (Validator.isNotNull(className)) { classNameId = PortalUtil.getClassNameId(className); } setClassNameId(classNameId); } @JSON @Override public long getClassNameId() { return _classNameId; } @Override public void setClassNameId(long classNameId) { if (_columnOriginalValues == Collections.EMPTY_MAP) { _setColumnOriginalValues(); } _classNameId = classNameId; } /** * @deprecated As of Athanasius (7.3.x), replaced by {@link * #getColumnOriginalValue(String)} */ @Deprecated public long getOriginalClassNameId() { return GetterUtil.getLong( this.getColumnOriginalValue("classNameId")); } @JSON @Override public long getClassPK() { return _classPK; } @Override public void setClassPK(long classPK) { if (_columnOriginalValues == Collections.EMPTY_MAP) { _setColumnOriginalValues(); } _classPK = classPK; } /** * @deprecated As of Athanasius (7.3.x), replaced by {@link * #getColumnOriginalValue(String)} */ @Deprecated public long getOriginalClassPK() { return GetterUtil.getLong(this.getColumnOriginalValue("classPK")); } @JSON @Override public String getName() { if (_name == null) { return ""; } else { return _name; } } @Override public void setName(String name) { if (_columnOriginalValues == Collections.EMPTY_MAP) { _setColumnOriginalValues(); } _name = name; } /** * @deprecated As of Athanasius (7.3.x), replaced by {@link * #getColumnOriginalValue(String)} */ @Deprecated public String getOriginalName() { return getColumnOriginalValue("name"); } @JSON @Override public String getTitle() { if (_title == null) { return ""; } else { return _title; } } @Override public String getTitle(Locale locale) { String languageId = LocaleUtil.toLanguageId(locale); return getTitle(languageId); } @Override public String getTitle(Locale locale, boolean useDefault) { String languageId = LocaleUtil.toLanguageId(locale); return getTitle(languageId, useDefault); } @Override public String getTitle(String languageId) { return LocalizationUtil.getLocalization(getTitle(), languageId); } @Override public String getTitle(String languageId, boolean useDefault) { return LocalizationUtil.getLocalization( getTitle(), languageId, useDefault); } @Override public String getTitleCurrentLanguageId() { return _titleCurrentLanguageId; } @JSON @Override public String getTitleCurrentValue() { Locale locale = getLocale(_titleCurrentLanguageId); return getTitle(locale); } @Override public Map getTitleMap() { return LocalizationUtil.getLocalizationMap(getTitle()); } @Override public void setTitle(String title) { if (_columnOriginalValues == Collections.EMPTY_MAP) { _setColumnOriginalValues(); } _title = title; } @Override public void setTitle(String title, Locale locale) { setTitle(title, locale, LocaleUtil.getDefault()); } @Override public void setTitle(String title, Locale locale, Locale defaultLocale) { String languageId = LocaleUtil.toLanguageId(locale); String defaultLanguageId = LocaleUtil.toLanguageId(defaultLocale); if (Validator.isNotNull(title)) { setTitle( LocalizationUtil.updateLocalization( getTitle(), "Title", title, languageId, defaultLanguageId)); } else { setTitle( LocalizationUtil.removeLocalization( getTitle(), "Title", languageId)); } } @Override public void setTitleCurrentLanguageId(String languageId) { _titleCurrentLanguageId = languageId; } @Override public void setTitleMap(Map titleMap) { setTitleMap(titleMap, LocaleUtil.getDefault()); } @Override public void setTitleMap( Map titleMap, Locale defaultLocale) { if (titleMap == null) { return; } setTitle( LocalizationUtil.updateLocalization( titleMap, getTitle(), "Title", LocaleUtil.toLanguageId(defaultLocale))); } @JSON @Override public String getDescription() { if (_description == null) { return ""; } else { return _description; } } @Override public String getDescription(Locale locale) { String languageId = LocaleUtil.toLanguageId(locale); return getDescription(languageId); } @Override public String getDescription(Locale locale, boolean useDefault) { String languageId = LocaleUtil.toLanguageId(locale); return getDescription(languageId, useDefault); } @Override public String getDescription(String languageId) { return LocalizationUtil.getLocalization(getDescription(), languageId); } @Override public String getDescription(String languageId, boolean useDefault) { return LocalizationUtil.getLocalization( getDescription(), languageId, useDefault); } @Override public String getDescriptionCurrentLanguageId() { return _descriptionCurrentLanguageId; } @JSON @Override public String getDescriptionCurrentValue() { Locale locale = getLocale(_descriptionCurrentLanguageId); return getDescription(locale); } @Override public Map getDescriptionMap() { return LocalizationUtil.getLocalizationMap(getDescription()); } @Override public void setDescription(String description) { if (_columnOriginalValues == Collections.EMPTY_MAP) { _setColumnOriginalValues(); } _description = description; } @Override public void setDescription(String description, Locale locale) { setDescription(description, locale, LocaleUtil.getDefault()); } @Override public void setDescription( String description, Locale locale, Locale defaultLocale) { String languageId = LocaleUtil.toLanguageId(locale); String defaultLanguageId = LocaleUtil.toLanguageId(defaultLocale); if (Validator.isNotNull(description)) { setDescription( LocalizationUtil.updateLocalization( getDescription(), "Description", description, languageId, defaultLanguageId)); } else { setDescription( LocalizationUtil.removeLocalization( getDescription(), "Description", languageId)); } } @Override public void setDescriptionCurrentLanguageId(String languageId) { _descriptionCurrentLanguageId = languageId; } @Override public void setDescriptionMap(Map descriptionMap) { setDescriptionMap(descriptionMap, LocaleUtil.getDefault()); } @Override public void setDescriptionMap( Map descriptionMap, Locale defaultLocale) { if (descriptionMap == null) { return; } setDescription( LocalizationUtil.updateLocalization( descriptionMap, getDescription(), "Description", LocaleUtil.toLanguageId(defaultLocale))); } @JSON @Override public int getType() { return _type; } @Override public void setType(int type) { if (_columnOriginalValues == Collections.EMPTY_MAP) { _setColumnOriginalValues(); } _type = type; } /** * @deprecated As of Athanasius (7.3.x), replaced by {@link * #getColumnOriginalValue(String)} */ @Deprecated public int getOriginalType() { return GetterUtil.getInteger( this.getColumnOriginalValue("type_")); } @JSON @Override public String getSubtype() { if (_subtype == null) { return ""; } else { return _subtype; } } @Override public void setSubtype(String subtype) { if (_columnOriginalValues == Collections.EMPTY_MAP) { _setColumnOriginalValues(); } _subtype = subtype; } /** * @deprecated As of Athanasius (7.3.x), replaced by {@link * #getColumnOriginalValue(String)} */ @Deprecated public String getOriginalSubtype() { return getColumnOriginalValue("subtype"); } @Override public StagedModelType getStagedModelType() { return new StagedModelType( PortalUtil.getClassNameId(Role.class.getName()), getClassNameId()); } public long getColumnBitmask() { if (_columnBitmask > 0) { return _columnBitmask; } if ((_columnOriginalValues == null) || (_columnOriginalValues == Collections.EMPTY_MAP)) { return 0; } for (Map.Entry entry : _columnOriginalValues.entrySet()) { if (!Objects.equals( entry.getValue(), getColumnValue(entry.getKey()))) { _columnBitmask |= _columnBitmasks.get(entry.getKey()); } } return _columnBitmask; } @Override public ExpandoBridge getExpandoBridge() { return ExpandoBridgeFactoryUtil.getExpandoBridge( getCompanyId(), Role.class.getName(), getPrimaryKey()); } @Override public void setExpandoBridgeAttributes(ServiceContext serviceContext) { ExpandoBridge expandoBridge = getExpandoBridge(); expandoBridge.setAttributes(serviceContext); } @Override public String[] getAvailableLanguageIds() { Set availableLanguageIds = new TreeSet(); Map titleMap = getTitleMap(); for (Map.Entry entry : titleMap.entrySet()) { Locale locale = entry.getKey(); String value = entry.getValue(); if (Validator.isNotNull(value)) { availableLanguageIds.add(LocaleUtil.toLanguageId(locale)); } } Map descriptionMap = getDescriptionMap(); for (Map.Entry entry : descriptionMap.entrySet()) { Locale locale = entry.getKey(); String value = entry.getValue(); if (Validator.isNotNull(value)) { availableLanguageIds.add(LocaleUtil.toLanguageId(locale)); } } return availableLanguageIds.toArray( new String[availableLanguageIds.size()]); } @Override public String getDefaultLanguageId() { String xml = getTitle(); if (xml == null) { return ""; } Locale defaultLocale = LocaleUtil.getDefault(); return LocalizationUtil.getDefaultLanguageId(xml, defaultLocale); } @Override public void prepareLocalizedFieldsForImport() throws LocaleException { Locale defaultLocale = LocaleUtil.fromLanguageId( getDefaultLanguageId()); Locale[] availableLocales = LocaleUtil.fromLanguageIds( getAvailableLanguageIds()); Locale defaultImportLocale = LocalizationUtil.getDefaultImportLocale( Role.class.getName(), getPrimaryKey(), defaultLocale, availableLocales); prepareLocalizedFieldsForImport(defaultImportLocale); } @Override @SuppressWarnings("unused") public void prepareLocalizedFieldsForImport(Locale defaultImportLocale) throws LocaleException { Locale defaultLocale = LocaleUtil.getDefault(); String modelDefaultLanguageId = getDefaultLanguageId(); String title = getTitle(defaultLocale); if (Validator.isNull(title)) { setTitle(getTitle(modelDefaultLanguageId), defaultLocale); } else { setTitle(getTitle(defaultLocale), defaultLocale, defaultLocale); } String description = getDescription(defaultLocale); if (Validator.isNull(description)) { setDescription( getDescription(modelDefaultLanguageId), defaultLocale); } else { setDescription( getDescription(defaultLocale), defaultLocale, defaultLocale); } } @Override public Role toEscapedModel() { if (_escapedModel == null) { Function escapedModelProxyProviderFunction = EscapedModelProxyProviderFunctionHolder. _escapedModelProxyProviderFunction; _escapedModel = escapedModelProxyProviderFunction.apply( new AutoEscapeBeanHandler(this)); } return _escapedModel; } @Override public Object clone() { RoleImpl roleImpl = new RoleImpl(); roleImpl.setMvccVersion(getMvccVersion()); roleImpl.setCtCollectionId(getCtCollectionId()); roleImpl.setUuid(getUuid()); roleImpl.setRoleId(getRoleId()); roleImpl.setCompanyId(getCompanyId()); roleImpl.setUserId(getUserId()); roleImpl.setUserName(getUserName()); roleImpl.setCreateDate(getCreateDate()); roleImpl.setModifiedDate(getModifiedDate()); roleImpl.setClassNameId(getClassNameId()); roleImpl.setClassPK(getClassPK()); roleImpl.setName(getName()); roleImpl.setTitle(getTitle()); roleImpl.setDescription(getDescription()); roleImpl.setType(getType()); roleImpl.setSubtype(getSubtype()); roleImpl.resetOriginalValues(); return roleImpl; } @Override public Role cloneWithOriginalValues() { RoleImpl roleImpl = new RoleImpl(); roleImpl.setMvccVersion( this.getColumnOriginalValue("mvccVersion")); roleImpl.setCtCollectionId( this.getColumnOriginalValue("ctCollectionId")); roleImpl.setUuid(this.getColumnOriginalValue("uuid_")); roleImpl.setRoleId(this.getColumnOriginalValue("roleId")); roleImpl.setCompanyId(this.getColumnOriginalValue("companyId")); roleImpl.setUserId(this.getColumnOriginalValue("userId")); roleImpl.setUserName(this.getColumnOriginalValue("userName")); roleImpl.setCreateDate(this.getColumnOriginalValue("createDate")); roleImpl.setModifiedDate( this.getColumnOriginalValue("modifiedDate")); roleImpl.setClassNameId( this.getColumnOriginalValue("classNameId")); roleImpl.setClassPK(this.getColumnOriginalValue("classPK")); roleImpl.setName(this.getColumnOriginalValue("name")); roleImpl.setTitle(this.getColumnOriginalValue("title")); roleImpl.setDescription( this.getColumnOriginalValue("description")); roleImpl.setType(this.getColumnOriginalValue("type_")); roleImpl.setSubtype(this.getColumnOriginalValue("subtype")); return roleImpl; } @Override public int compareTo(Role role) { int value = 0; value = getName().compareTo(role.getName()); if (value != 0) { return value; } return 0; } @Override public boolean equals(Object object) { if (this == object) { return true; } if (!(object instanceof Role)) { return false; } Role role = (Role)object; long primaryKey = role.getPrimaryKey(); if (getPrimaryKey() == primaryKey) { return true; } else { return false; } } @Override public int hashCode() { return (int)getPrimaryKey(); } /** * @deprecated As of Athanasius (7.3.x), with no direct replacement */ @Deprecated @Override public boolean isEntityCacheEnabled() { return ENTITY_CACHE_ENABLED; } /** * @deprecated As of Athanasius (7.3.x), with no direct replacement */ @Deprecated @Override public boolean isFinderCacheEnabled() { return FINDER_CACHE_ENABLED; } @Override public void resetOriginalValues() { _columnOriginalValues = Collections.emptyMap(); _setModifiedDate = false; _columnBitmask = 0; } @Override public CacheModel toCacheModel() { RoleCacheModel roleCacheModel = new RoleCacheModel(); roleCacheModel.mvccVersion = getMvccVersion(); roleCacheModel.ctCollectionId = getCtCollectionId(); roleCacheModel.uuid = getUuid(); String uuid = roleCacheModel.uuid; if ((uuid != null) && (uuid.length() == 0)) { roleCacheModel.uuid = null; } roleCacheModel.roleId = getRoleId(); roleCacheModel.companyId = getCompanyId(); roleCacheModel.userId = getUserId(); roleCacheModel.userName = getUserName(); String userName = roleCacheModel.userName; if ((userName != null) && (userName.length() == 0)) { roleCacheModel.userName = null; } Date createDate = getCreateDate(); if (createDate != null) { roleCacheModel.createDate = createDate.getTime(); } else { roleCacheModel.createDate = Long.MIN_VALUE; } Date modifiedDate = getModifiedDate(); if (modifiedDate != null) { roleCacheModel.modifiedDate = modifiedDate.getTime(); } else { roleCacheModel.modifiedDate = Long.MIN_VALUE; } roleCacheModel.classNameId = getClassNameId(); roleCacheModel.classPK = getClassPK(); roleCacheModel.name = getName(); String name = roleCacheModel.name; if ((name != null) && (name.length() == 0)) { roleCacheModel.name = null; } roleCacheModel.title = getTitle(); String title = roleCacheModel.title; if ((title != null) && (title.length() == 0)) { roleCacheModel.title = null; } roleCacheModel.description = getDescription(); String description = roleCacheModel.description; if ((description != null) && (description.length() == 0)) { roleCacheModel.description = null; } roleCacheModel.type = getType(); roleCacheModel.subtype = getSubtype(); String subtype = roleCacheModel.subtype; if ((subtype != null) && (subtype.length() == 0)) { roleCacheModel.subtype = null; } return roleCacheModel; } @Override public String toString() { Map> attributeGetterFunctions = getAttributeGetterFunctions(); StringBundler sb = new StringBundler( (5 * attributeGetterFunctions.size()) + 2); sb.append("{"); for (Map.Entry> entry : attributeGetterFunctions.entrySet()) { String attributeName = entry.getKey(); Function attributeGetterFunction = entry.getValue(); sb.append("\""); sb.append(attributeName); sb.append("\": "); Object value = attributeGetterFunction.apply((Role)this); if (value == null) { sb.append("null"); } else if (value instanceof Blob || value instanceof Date || value instanceof Map || value instanceof String) { sb.append( "\"" + StringUtil.replace(value.toString(), "\"", "'") + "\""); } else { sb.append(value); } sb.append(", "); } if (sb.index() > 1) { sb.setIndex(sb.index() - 1); } sb.append("}"); return sb.toString(); } private static class EscapedModelProxyProviderFunctionHolder { private static final Function _escapedModelProxyProviderFunction = ProxyUtil.getProxyProviderFunction( Role.class, ModelWrapper.class); } private long _mvccVersion; private long _ctCollectionId; private String _uuid; private long _roleId; private long _companyId; private long _userId; private String _userName; private Date _createDate; private Date _modifiedDate; private boolean _setModifiedDate; private long _classNameId; private long _classPK; private String _name; private String _title; private String _titleCurrentLanguageId; private String _description; private String _descriptionCurrentLanguageId; private int _type; private String _subtype; public T getColumnValue(String columnName) { columnName = _attributeNames.getOrDefault(columnName, columnName); Function function = _attributeGetterFunctions.get( columnName); if (function == null) { throw new IllegalArgumentException( "No attribute getter function found for " + columnName); } return (T)function.apply((Role)this); } public T getColumnOriginalValue(String columnName) { if (_columnOriginalValues == null) { return null; } if (_columnOriginalValues == Collections.EMPTY_MAP) { _setColumnOriginalValues(); } return (T)_columnOriginalValues.get(columnName); } private void _setColumnOriginalValues() { _columnOriginalValues = new HashMap(); _columnOriginalValues.put("mvccVersion", _mvccVersion); _columnOriginalValues.put("ctCollectionId", _ctCollectionId); _columnOriginalValues.put("uuid_", _uuid); _columnOriginalValues.put("roleId", _roleId); _columnOriginalValues.put("companyId", _companyId); _columnOriginalValues.put("userId", _userId); _columnOriginalValues.put("userName", _userName); _columnOriginalValues.put("createDate", _createDate); _columnOriginalValues.put("modifiedDate", _modifiedDate); _columnOriginalValues.put("classNameId", _classNameId); _columnOriginalValues.put("classPK", _classPK); _columnOriginalValues.put("name", _name); _columnOriginalValues.put("title", _title); _columnOriginalValues.put("description", _description); _columnOriginalValues.put("type_", _type); _columnOriginalValues.put("subtype", _subtype); } private static final Map _attributeNames; static { Map attributeNames = new HashMap<>(); attributeNames.put("uuid_", "uuid"); attributeNames.put("type_", "type"); attributeNames.put("groups_", "groups"); _attributeNames = Collections.unmodifiableMap(attributeNames); } private transient Map _columnOriginalValues; public static long getColumnBitmask(String columnName) { return _columnBitmasks.get(columnName); } private static final Map _columnBitmasks; static { Map columnBitmasks = new HashMap<>(); columnBitmasks.put("mvccVersion", 1L); columnBitmasks.put("ctCollectionId", 2L); columnBitmasks.put("uuid_", 4L); columnBitmasks.put("roleId", 8L); columnBitmasks.put("companyId", 16L); columnBitmasks.put("userId", 32L); columnBitmasks.put("userName", 64L); columnBitmasks.put("createDate", 128L); columnBitmasks.put("modifiedDate", 256L); columnBitmasks.put("classNameId", 512L); columnBitmasks.put("classPK", 1024L); columnBitmasks.put("name", 2048L); columnBitmasks.put("title", 4096L); columnBitmasks.put("description", 8192L); columnBitmasks.put("type_", 16384L); columnBitmasks.put("subtype", 32768L); _columnBitmasks = Collections.unmodifiableMap(columnBitmasks); } private long _columnBitmask; private Role _escapedModel; }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy