com.liferay.depot.model.impl.DepotAppCustomizationModelImpl 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.depot.model.impl;
import com.liferay.depot.model.DepotAppCustomization;
import com.liferay.depot.model.DepotAppCustomizationModel;
import com.liferay.expando.kernel.model.ExpandoBridge;
import com.liferay.expando.kernel.util.ExpandoBridgeFactoryUtil;
import com.liferay.petra.string.StringBundler;
import com.liferay.portal.kernel.bean.AutoEscapeBeanHandler;
import com.liferay.portal.kernel.model.CacheModel;
import com.liferay.portal.kernel.model.ModelWrapper;
import com.liferay.portal.kernel.model.impl.BaseModelImpl;
import com.liferay.portal.kernel.service.ServiceContext;
import com.liferay.portal.kernel.util.GetterUtil;
import com.liferay.portal.kernel.util.ProxyUtil;
import java.io.Serializable;
import java.lang.reflect.Constructor;
import java.lang.reflect.InvocationHandler;
import java.sql.Types;
import java.util.Collections;
import java.util.HashMap;
import java.util.LinkedHashMap;
import java.util.Map;
import java.util.function.BiConsumer;
import java.util.function.Function;
/**
* The base model implementation for the DepotAppCustomization service. Represents a row in the "DepotAppCustomization" database table, with each column mapped to a property of this class.
*
*
* This implementation and its corresponding interface DepotAppCustomizationModel
exist only as a container for the default property accessors generated by ServiceBuilder. Helper methods and all application logic should be put in {@link DepotAppCustomizationImpl}.
*
*
* @author Brian Wing Shun Chan
* @see DepotAppCustomizationImpl
* @generated
*/
public class DepotAppCustomizationModelImpl
extends BaseModelImpl
implements DepotAppCustomizationModel {
/*
* NOTE FOR DEVELOPERS:
*
* Never modify or reference this class directly. All methods that expect a depot app customization model instance should use the DepotAppCustomization
interface instead.
*/
public static final String TABLE_NAME = "DepotAppCustomization";
public static final Object[][] TABLE_COLUMNS = {
{"mvccVersion", Types.BIGINT},
{"depotAppCustomizationId", Types.BIGINT}, {"companyId", Types.BIGINT},
{"depotEntryId", Types.BIGINT}, {"enabled", Types.BOOLEAN},
{"portletId", Types.VARCHAR}
};
public static final Map TABLE_COLUMNS_MAP =
new HashMap();
static {
TABLE_COLUMNS_MAP.put("mvccVersion", Types.BIGINT);
TABLE_COLUMNS_MAP.put("depotAppCustomizationId", Types.BIGINT);
TABLE_COLUMNS_MAP.put("companyId", Types.BIGINT);
TABLE_COLUMNS_MAP.put("depotEntryId", Types.BIGINT);
TABLE_COLUMNS_MAP.put("enabled", Types.BOOLEAN);
TABLE_COLUMNS_MAP.put("portletId", Types.VARCHAR);
}
public static final String TABLE_SQL_CREATE =
"create table DepotAppCustomization (mvccVersion LONG default 0 not null,depotAppCustomizationId LONG not null primary key,companyId LONG,depotEntryId LONG,enabled BOOLEAN,portletId VARCHAR(75) null)";
public static final String TABLE_SQL_DROP =
"drop table DepotAppCustomization";
public static final String ORDER_BY_JPQL =
" ORDER BY depotAppCustomization.depotAppCustomizationId ASC";
public static final String ORDER_BY_SQL =
" ORDER BY DepotAppCustomization.depotAppCustomizationId ASC";
public static final String DATA_SOURCE = "liferayDataSource";
public static final String SESSION_FACTORY = "liferaySessionFactory";
public static final String TX_MANAGER = "liferayTransactionManager";
public static final long DEPOTENTRYID_COLUMN_BITMASK = 1L;
public static final long ENABLED_COLUMN_BITMASK = 2L;
public static final long PORTLETID_COLUMN_BITMASK = 4L;
public static final long DEPOTAPPCUSTOMIZATIONID_COLUMN_BITMASK = 8L;
public static void setEntityCacheEnabled(boolean entityCacheEnabled) {
_entityCacheEnabled = entityCacheEnabled;
}
public static void setFinderCacheEnabled(boolean finderCacheEnabled) {
_finderCacheEnabled = finderCacheEnabled;
}
public DepotAppCustomizationModelImpl() {
}
@Override
public long getPrimaryKey() {
return _depotAppCustomizationId;
}
@Override
public void setPrimaryKey(long primaryKey) {
setDepotAppCustomizationId(primaryKey);
}
@Override
public Serializable getPrimaryKeyObj() {
return _depotAppCustomizationId;
}
@Override
public void setPrimaryKeyObj(Serializable primaryKeyObj) {
setPrimaryKey(((Long)primaryKeyObj).longValue());
}
@Override
public Class> getModelClass() {
return DepotAppCustomization.class;
}
@Override
public String getModelClassName() {
return DepotAppCustomization.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((DepotAppCustomization)this));
}
attributes.put("entityCacheEnabled", isEntityCacheEnabled());
attributes.put("finderCacheEnabled", isFinderCacheEnabled());
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(
(DepotAppCustomization)this, entry.getValue());
}
}
}
public Map>
getAttributeGetterFunctions() {
return _attributeGetterFunctions;
}
public Map>
getAttributeSetterBiConsumers() {
return _attributeSetterBiConsumers;
}
private static Function
_getProxyProviderFunction() {
Class> proxyClass = ProxyUtil.getProxyClass(
DepotAppCustomization.class.getClassLoader(),
DepotAppCustomization.class, ModelWrapper.class);
try {
Constructor constructor =
(Constructor)proxyClass.getConstructor(
InvocationHandler.class);
return invocationHandler -> {
try {
return constructor.newInstance(invocationHandler);
}
catch (ReflectiveOperationException
reflectiveOperationException) {
throw new InternalError(reflectiveOperationException);
}
};
}
catch (NoSuchMethodException noSuchMethodException) {
throw new InternalError(noSuchMethodException);
}
}
private static final Map>
_attributeGetterFunctions;
private static final Map>
_attributeSetterBiConsumers;
static {
Map>
attributeGetterFunctions =
new LinkedHashMap
>();
Map>
attributeSetterBiConsumers =
new LinkedHashMap
>();
attributeGetterFunctions.put(
"mvccVersion", DepotAppCustomization::getMvccVersion);
attributeSetterBiConsumers.put(
"mvccVersion",
(BiConsumer)
DepotAppCustomization::setMvccVersion);
attributeGetterFunctions.put(
"depotAppCustomizationId",
DepotAppCustomization::getDepotAppCustomizationId);
attributeSetterBiConsumers.put(
"depotAppCustomizationId",
(BiConsumer)
DepotAppCustomization::setDepotAppCustomizationId);
attributeGetterFunctions.put(
"companyId", DepotAppCustomization::getCompanyId);
attributeSetterBiConsumers.put(
"companyId",
(BiConsumer)
DepotAppCustomization::setCompanyId);
attributeGetterFunctions.put(
"depotEntryId", DepotAppCustomization::getDepotEntryId);
attributeSetterBiConsumers.put(
"depotEntryId",
(BiConsumer)
DepotAppCustomization::setDepotEntryId);
attributeGetterFunctions.put(
"enabled", DepotAppCustomization::getEnabled);
attributeSetterBiConsumers.put(
"enabled",
(BiConsumer)
DepotAppCustomization::setEnabled);
attributeGetterFunctions.put(
"portletId", DepotAppCustomization::getPortletId);
attributeSetterBiConsumers.put(
"portletId",
(BiConsumer)
DepotAppCustomization::setPortletId);
_attributeGetterFunctions = Collections.unmodifiableMap(
attributeGetterFunctions);
_attributeSetterBiConsumers = Collections.unmodifiableMap(
(Map)attributeSetterBiConsumers);
}
@Override
public long getMvccVersion() {
return _mvccVersion;
}
@Override
public void setMvccVersion(long mvccVersion) {
_mvccVersion = mvccVersion;
}
@Override
public long getDepotAppCustomizationId() {
return _depotAppCustomizationId;
}
@Override
public void setDepotAppCustomizationId(long depotAppCustomizationId) {
_depotAppCustomizationId = depotAppCustomizationId;
}
@Override
public long getCompanyId() {
return _companyId;
}
@Override
public void setCompanyId(long companyId) {
_companyId = companyId;
}
@Override
public long getDepotEntryId() {
return _depotEntryId;
}
@Override
public void setDepotEntryId(long depotEntryId) {
_columnBitmask |= DEPOTENTRYID_COLUMN_BITMASK;
if (!_setOriginalDepotEntryId) {
_setOriginalDepotEntryId = true;
_originalDepotEntryId = _depotEntryId;
}
_depotEntryId = depotEntryId;
}
public long getOriginalDepotEntryId() {
return _originalDepotEntryId;
}
@Override
public boolean getEnabled() {
return _enabled;
}
@Override
public boolean isEnabled() {
return _enabled;
}
@Override
public void setEnabled(boolean enabled) {
_columnBitmask |= ENABLED_COLUMN_BITMASK;
if (!_setOriginalEnabled) {
_setOriginalEnabled = true;
_originalEnabled = _enabled;
}
_enabled = enabled;
}
public boolean getOriginalEnabled() {
return _originalEnabled;
}
@Override
public String getPortletId() {
if (_portletId == null) {
return "";
}
else {
return _portletId;
}
}
@Override
public void setPortletId(String portletId) {
_columnBitmask |= PORTLETID_COLUMN_BITMASK;
if (_originalPortletId == null) {
_originalPortletId = _portletId;
}
_portletId = portletId;
}
public String getOriginalPortletId() {
return GetterUtil.getString(_originalPortletId);
}
public long getColumnBitmask() {
return _columnBitmask;
}
@Override
public ExpandoBridge getExpandoBridge() {
return ExpandoBridgeFactoryUtil.getExpandoBridge(
getCompanyId(), DepotAppCustomization.class.getName(),
getPrimaryKey());
}
@Override
public void setExpandoBridgeAttributes(ServiceContext serviceContext) {
ExpandoBridge expandoBridge = getExpandoBridge();
expandoBridge.setAttributes(serviceContext);
}
@Override
public DepotAppCustomization toEscapedModel() {
if (_escapedModel == null) {
Function
escapedModelProxyProviderFunction =
EscapedModelProxyProviderFunctionHolder.
_escapedModelProxyProviderFunction;
_escapedModel = escapedModelProxyProviderFunction.apply(
new AutoEscapeBeanHandler(this));
}
return _escapedModel;
}
@Override
public Object clone() {
DepotAppCustomizationImpl depotAppCustomizationImpl =
new DepotAppCustomizationImpl();
depotAppCustomizationImpl.setMvccVersion(getMvccVersion());
depotAppCustomizationImpl.setDepotAppCustomizationId(
getDepotAppCustomizationId());
depotAppCustomizationImpl.setCompanyId(getCompanyId());
depotAppCustomizationImpl.setDepotEntryId(getDepotEntryId());
depotAppCustomizationImpl.setEnabled(isEnabled());
depotAppCustomizationImpl.setPortletId(getPortletId());
depotAppCustomizationImpl.resetOriginalValues();
return depotAppCustomizationImpl;
}
@Override
public int compareTo(DepotAppCustomization depotAppCustomization) {
long primaryKey = depotAppCustomization.getPrimaryKey();
if (getPrimaryKey() < primaryKey) {
return -1;
}
else if (getPrimaryKey() > primaryKey) {
return 1;
}
else {
return 0;
}
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof DepotAppCustomization)) {
return false;
}
DepotAppCustomization depotAppCustomization =
(DepotAppCustomization)obj;
long primaryKey = depotAppCustomization.getPrimaryKey();
if (getPrimaryKey() == primaryKey) {
return true;
}
else {
return false;
}
}
@Override
public int hashCode() {
return (int)getPrimaryKey();
}
@Override
public boolean isEntityCacheEnabled() {
return _entityCacheEnabled;
}
@Override
public boolean isFinderCacheEnabled() {
return _finderCacheEnabled;
}
@Override
public void resetOriginalValues() {
DepotAppCustomizationModelImpl depotAppCustomizationModelImpl = this;
depotAppCustomizationModelImpl._originalDepotEntryId =
depotAppCustomizationModelImpl._depotEntryId;
depotAppCustomizationModelImpl._setOriginalDepotEntryId = false;
depotAppCustomizationModelImpl._originalEnabled =
depotAppCustomizationModelImpl._enabled;
depotAppCustomizationModelImpl._setOriginalEnabled = false;
depotAppCustomizationModelImpl._originalPortletId =
depotAppCustomizationModelImpl._portletId;
depotAppCustomizationModelImpl._columnBitmask = 0;
}
@Override
public CacheModel toCacheModel() {
DepotAppCustomizationCacheModel depotAppCustomizationCacheModel =
new DepotAppCustomizationCacheModel();
depotAppCustomizationCacheModel.mvccVersion = getMvccVersion();
depotAppCustomizationCacheModel.depotAppCustomizationId =
getDepotAppCustomizationId();
depotAppCustomizationCacheModel.companyId = getCompanyId();
depotAppCustomizationCacheModel.depotEntryId = getDepotEntryId();
depotAppCustomizationCacheModel.enabled = isEnabled();
depotAppCustomizationCacheModel.portletId = getPortletId();
String portletId = depotAppCustomizationCacheModel.portletId;
if ((portletId != null) && (portletId.length() == 0)) {
depotAppCustomizationCacheModel.portletId = null;
}
return depotAppCustomizationCacheModel;
}
@Override
public String toString() {
Map>
attributeGetterFunctions = getAttributeGetterFunctions();
StringBundler sb = new StringBundler(
4 * attributeGetterFunctions.size() + 2);
sb.append("{");
for (Map.Entry> entry :
attributeGetterFunctions.entrySet()) {
String attributeName = entry.getKey();
Function attributeGetterFunction =
entry.getValue();
sb.append(attributeName);
sb.append("=");
sb.append(
attributeGetterFunction.apply((DepotAppCustomization)this));
sb.append(", ");
}
if (sb.index() > 1) {
sb.setIndex(sb.index() - 1);
}
sb.append("}");
return sb.toString();
}
@Override
public String toXmlString() {
Map>
attributeGetterFunctions = getAttributeGetterFunctions();
StringBundler sb = new StringBundler(
5 * attributeGetterFunctions.size() + 4);
sb.append("");
sb.append(getModelClassName());
sb.append(" ");
for (Map.Entry> entry :
attributeGetterFunctions.entrySet()) {
String attributeName = entry.getKey();
Function attributeGetterFunction =
entry.getValue();
sb.append("");
sb.append(attributeName);
sb.append(" ");
}
sb.append(" ");
return sb.toString();
}
private static class EscapedModelProxyProviderFunctionHolder {
private static final Function
_escapedModelProxyProviderFunction = _getProxyProviderFunction();
}
private static boolean _entityCacheEnabled;
private static boolean _finderCacheEnabled;
private long _mvccVersion;
private long _depotAppCustomizationId;
private long _companyId;
private long _depotEntryId;
private long _originalDepotEntryId;
private boolean _setOriginalDepotEntryId;
private boolean _enabled;
private boolean _originalEnabled;
private boolean _setOriginalEnabled;
private String _portletId;
private String _originalPortletId;
private long _columnBitmask;
private DepotAppCustomization _escapedModel;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy