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

com.liferay.portal.model.impl.ClusterGroupModelImpl Maven / Gradle / Ivy

There is a newer version: 7.4.3.112-ga112
Show newest version
/**
 * 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 aQute.bnd.annotation.ProviderType;

import com.liferay.expando.kernel.model.ExpandoBridge;
import com.liferay.expando.kernel.util.ExpandoBridgeFactoryUtil;
import com.liferay.portal.kernel.bean.AutoEscapeBeanHandler;
import com.liferay.portal.kernel.model.CacheModel;
import com.liferay.portal.kernel.model.ClusterGroup;
import com.liferay.portal.kernel.model.ClusterGroupModel;
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 com.liferay.portal.kernel.util.StringBundler;

import java.io.Serializable;

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 ClusterGroup service. Represents a row in the "ClusterGroup" database table, with each column mapped to a property of this class.
 *
 * 

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

* * @author Brian Wing Shun Chan * @see ClusterGroupImpl * @generated */ @ProviderType public class ClusterGroupModelImpl extends BaseModelImpl implements ClusterGroupModel { /* * NOTE FOR DEVELOPERS: * * Never modify or reference this class directly. All methods that expect a cluster group model instance should use the ClusterGroup interface instead. */ public static final String TABLE_NAME = "ClusterGroup"; public static final Object[][] TABLE_COLUMNS = { {"mvccVersion", Types.BIGINT}, {"clusterGroupId", Types.BIGINT}, {"name", Types.VARCHAR}, {"clusterNodeIds", Types.VARCHAR}, {"wholeCluster", Types.BOOLEAN} }; public static final Map TABLE_COLUMNS_MAP = new HashMap(); static { TABLE_COLUMNS_MAP.put("mvccVersion", Types.BIGINT); TABLE_COLUMNS_MAP.put("clusterGroupId", Types.BIGINT); TABLE_COLUMNS_MAP.put("name", Types.VARCHAR); TABLE_COLUMNS_MAP.put("clusterNodeIds", Types.VARCHAR); TABLE_COLUMNS_MAP.put("wholeCluster", Types.BOOLEAN); } public static final String TABLE_SQL_CREATE = "create table ClusterGroup (mvccVersion LONG default 0 not null,clusterGroupId LONG not null primary key,name VARCHAR(75) null,clusterNodeIds VARCHAR(75) null,wholeCluster BOOLEAN)"; public static final String TABLE_SQL_DROP = "drop table ClusterGroup"; public static final String ORDER_BY_JPQL = " ORDER BY clusterGroup.clusterGroupId ASC"; public static final String ORDER_BY_SQL = " ORDER BY ClusterGroup.clusterGroupId 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 boolean ENTITY_CACHE_ENABLED = GetterUtil.getBoolean( com.liferay.portal.util.PropsUtil.get( "value.object.entity.cache.enabled.com.liferay.portal.kernel.model.ClusterGroup"), true); public static final boolean FINDER_CACHE_ENABLED = GetterUtil.getBoolean( com.liferay.portal.util.PropsUtil.get( "value.object.finder.cache.enabled.com.liferay.portal.kernel.model.ClusterGroup"), true); public static final boolean COLUMN_BITMASK_ENABLED = false; public static final long LOCK_EXPIRATION_TIME = GetterUtil.getLong( com.liferay.portal.util.PropsUtil.get( "lock.expiration.time.com.liferay.portal.kernel.model.ClusterGroup")); public ClusterGroupModelImpl() { } @Override public long getPrimaryKey() { return _clusterGroupId; } @Override public void setPrimaryKey(long primaryKey) { setClusterGroupId(primaryKey); } @Override public Serializable getPrimaryKeyObj() { return _clusterGroupId; } @Override public void setPrimaryKeyObj(Serializable primaryKeyObj) { setPrimaryKey(((Long)primaryKeyObj).longValue()); } @Override public Class getModelClass() { return ClusterGroup.class; } @Override public String getModelClassName() { return ClusterGroup.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((ClusterGroup)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( (ClusterGroup)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", new Function() { @Override public Object apply(ClusterGroup clusterGroup) { return clusterGroup.getMvccVersion(); } }); attributeSetterBiConsumers.put( "mvccVersion", new BiConsumer() { @Override public void accept( ClusterGroup clusterGroup, Object mvccVersion) { clusterGroup.setMvccVersion((Long)mvccVersion); } }); attributeGetterFunctions.put( "clusterGroupId", new Function() { @Override public Object apply(ClusterGroup clusterGroup) { return clusterGroup.getClusterGroupId(); } }); attributeSetterBiConsumers.put( "clusterGroupId", new BiConsumer() { @Override public void accept( ClusterGroup clusterGroup, Object clusterGroupId) { clusterGroup.setClusterGroupId((Long)clusterGroupId); } }); attributeGetterFunctions.put( "name", new Function() { @Override public Object apply(ClusterGroup clusterGroup) { return clusterGroup.getName(); } }); attributeSetterBiConsumers.put( "name", new BiConsumer() { @Override public void accept(ClusterGroup clusterGroup, Object name) { clusterGroup.setName((String)name); } }); attributeGetterFunctions.put( "clusterNodeIds", new Function() { @Override public Object apply(ClusterGroup clusterGroup) { return clusterGroup.getClusterNodeIds(); } }); attributeSetterBiConsumers.put( "clusterNodeIds", new BiConsumer() { @Override public void accept( ClusterGroup clusterGroup, Object clusterNodeIds) { clusterGroup.setClusterNodeIds((String)clusterNodeIds); } }); attributeGetterFunctions.put( "wholeCluster", new Function() { @Override public Object apply(ClusterGroup clusterGroup) { return clusterGroup.getWholeCluster(); } }); attributeSetterBiConsumers.put( "wholeCluster", new BiConsumer() { @Override public void accept( ClusterGroup clusterGroup, Object wholeCluster) { clusterGroup.setWholeCluster((Boolean)wholeCluster); } }); _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 getClusterGroupId() { return _clusterGroupId; } @Override public void setClusterGroupId(long clusterGroupId) { _clusterGroupId = clusterGroupId; } @Override public String getName() { if (_name == null) { return ""; } else { return _name; } } @Override public void setName(String name) { _name = name; } @Override public String getClusterNodeIds() { if (_clusterNodeIds == null) { return ""; } else { return _clusterNodeIds; } } @Override public void setClusterNodeIds(String clusterNodeIds) { _clusterNodeIds = clusterNodeIds; } @Override public boolean getWholeCluster() { return _wholeCluster; } @Override public boolean isWholeCluster() { return _wholeCluster; } @Override public void setWholeCluster(boolean wholeCluster) { _wholeCluster = wholeCluster; } @Override public ExpandoBridge getExpandoBridge() { return ExpandoBridgeFactoryUtil.getExpandoBridge( 0, ClusterGroup.class.getName(), getPrimaryKey()); } @Override public void setExpandoBridgeAttributes(ServiceContext serviceContext) { ExpandoBridge expandoBridge = getExpandoBridge(); expandoBridge.setAttributes(serviceContext); } @Override public ClusterGroup toEscapedModel() { if (_escapedModel == null) { _escapedModel = (ClusterGroup)ProxyUtil.newProxyInstance( _classLoader, _escapedModelInterfaces, new AutoEscapeBeanHandler(this)); } return _escapedModel; } @Override public Object clone() { ClusterGroupImpl clusterGroupImpl = new ClusterGroupImpl(); clusterGroupImpl.setMvccVersion(getMvccVersion()); clusterGroupImpl.setClusterGroupId(getClusterGroupId()); clusterGroupImpl.setName(getName()); clusterGroupImpl.setClusterNodeIds(getClusterNodeIds()); clusterGroupImpl.setWholeCluster(isWholeCluster()); clusterGroupImpl.resetOriginalValues(); return clusterGroupImpl; } @Override public int compareTo(ClusterGroup clusterGroup) { long primaryKey = clusterGroup.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 ClusterGroup)) { return false; } ClusterGroup clusterGroup = (ClusterGroup)obj; long primaryKey = clusterGroup.getPrimaryKey(); if (getPrimaryKey() == primaryKey) { return true; } else { return false; } } @Override public int hashCode() { return (int)getPrimaryKey(); } @Override public boolean isEntityCacheEnabled() { return ENTITY_CACHE_ENABLED; } @Override public boolean isFinderCacheEnabled() { return FINDER_CACHE_ENABLED; } @Override public void resetOriginalValues() { } @Override public CacheModel toCacheModel() { ClusterGroupCacheModel clusterGroupCacheModel = new ClusterGroupCacheModel(); clusterGroupCacheModel.mvccVersion = getMvccVersion(); clusterGroupCacheModel.clusterGroupId = getClusterGroupId(); clusterGroupCacheModel.name = getName(); String name = clusterGroupCacheModel.name; if ((name != null) && (name.length() == 0)) { clusterGroupCacheModel.name = null; } clusterGroupCacheModel.clusterNodeIds = getClusterNodeIds(); String clusterNodeIds = clusterGroupCacheModel.clusterNodeIds; if ((clusterNodeIds != null) && (clusterNodeIds.length() == 0)) { clusterGroupCacheModel.clusterNodeIds = null; } clusterGroupCacheModel.wholeCluster = isWholeCluster(); return clusterGroupCacheModel; } @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((ClusterGroup)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 final ClassLoader _classLoader = ClusterGroup.class.getClassLoader(); private static final Class[] _escapedModelInterfaces = new Class[] { ClusterGroup.class, ModelWrapper.class }; private long _mvccVersion; private long _clusterGroupId; private String _name; private String _clusterNodeIds; private boolean _wholeCluster; private ClusterGroup _escapedModel; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy