/** * 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.counter.model.impl; import aQute.bnd.annotation.ProviderType; import com.liferay.counter.kernel.model.Counter; import com.liferay.counter.kernel.model.CounterModel; import com.liferay.portal.kernel.bean.AutoEscapeBeanHandler; import com.liferay.portal.kernel.model.CacheModel; import com.liferay.portal.kernel.model.impl.BaseModelImpl; import com.liferay.portal.kernel.util.GetterUtil; import com.liferay.portal.kernel.util.ProxyUtil; import com.liferay.portal.kernel.util.StringBundler; import com.liferay.portal.kernel.util.StringPool; import java.io.Serializable; import java.sql.Types; import java.util.HashMap; import java.util.Map; /** * The base model implementation for the Counter service. Represents a row in the "Counter" database table, with each column mapped to a property of this class. * * <p> * This implementation and its corresponding interface {@link CounterModel} exist only as a container for the default property accessors generated by ServiceBuilder. Helper methods and all application logic should be put in {@link CounterImpl}. * </p> * * @author Brian Wing Shun Chan * @see CounterImpl * @see Counter * @see CounterModel * @generated */ @ProviderType public class CounterModelImpl extends BaseModelImpl<Counter> implements CounterModel { /* * NOTE FOR DEVELOPERS: * * Never modify or reference this class directly. All methods that expect a counter model instance should use the {@link Counter} interface instead. */ public static final String TABLE_NAME = "Counter"; public static final Object[][] TABLE_COLUMNS = { { "name", Types.VARCHAR }, { "currentId", Types.BIGINT } }; public static final Map<String, Integer> TABLE_COLUMNS_MAP = new HashMap<String, Integer>(); static { TABLE_COLUMNS_MAP.put("name", Types.VARCHAR); TABLE_COLUMNS_MAP.put("currentId", Types.BIGINT); } public static final String TABLE_SQL_CREATE = "create table Counter (name VARCHAR(75) not null primary key,currentId LONG)"; public static final String TABLE_SQL_DROP = "drop table Counter"; public static final String ORDER_BY_JPQL = " ORDER BY counter.name ASC"; public static final String ORDER_BY_SQL = " ORDER BY Counter.name 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.counter.kernel.model.Counter"), false); public static final boolean FINDER_CACHE_ENABLED = GetterUtil.getBoolean(com.liferay.portal.util.PropsUtil.get( "value.object.finder.cache.enabled.com.liferay.counter.kernel.model.Counter"), false); 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.counter.kernel.model.Counter")); public CounterModelImpl() { } @Override public String getPrimaryKey() { return _name; } @Override public void setPrimaryKey(String primaryKey) { setName(primaryKey); } @Override public Serializable getPrimaryKeyObj() { return _name; } @Override public void setPrimaryKeyObj(Serializable primaryKeyObj) { setPrimaryKey((String)primaryKeyObj); } @Override public Class<?> getModelClass() { return Counter.class; } @Override public String getModelClassName() { return Counter.class.getName(); } @Override public Map<String, Object> getModelAttributes() { Map<String, Object> attributes = new HashMap<String, Object>(); attributes.put("name", getName()); attributes.put("currentId", getCurrentId()); attributes.put("entityCacheEnabled", isEntityCacheEnabled()); attributes.put("finderCacheEnabled", isFinderCacheEnabled()); return attributes; } @Override public void setModelAttributes(Map<String, Object> attributes) { String name = (String)attributes.get("name"); if (name != null) { setName(name); } Long currentId = (Long)attributes.get("currentId"); if (currentId != null) { setCurrentId(currentId); } } @Override public String getName() { if (_name == null) { return StringPool.BLANK; } else { return _name; } } @Override public void setName(String name) { _name = name; } @Override public long getCurrentId() { return _currentId; } @Override public void setCurrentId(long currentId) { _currentId = currentId; } @Override public Counter toEscapedModel() { if (_escapedModel == null) { _escapedModel = (Counter)ProxyUtil.newProxyInstance(_classLoader, _escapedModelInterfaces, new AutoEscapeBeanHandler(this)); } return _escapedModel; } @Override public Object clone() { CounterImpl counterImpl = new CounterImpl(); counterImpl.setName(getName()); counterImpl.setCurrentId(getCurrentId()); counterImpl.resetOriginalValues(); return counterImpl; } @Override public int compareTo(Counter counter) { String primaryKey = counter.getPrimaryKey(); return getPrimaryKey().compareTo(primaryKey); } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (!(obj instanceof Counter)) { return false; } Counter counter = (Counter)obj; String primaryKey = counter.getPrimaryKey(); if (getPrimaryKey().equals(primaryKey)) { return true; } else { return false; } } @Override public int hashCode() { return getPrimaryKey().hashCode(); } @Override public boolean isEntityCacheEnabled() { return ENTITY_CACHE_ENABLED; } @Override public boolean isFinderCacheEnabled() { return FINDER_CACHE_ENABLED; } @Override public void resetOriginalValues() { } @Override public CacheModel<Counter> toCacheModel() { CounterCacheModel counterCacheModel = new CounterCacheModel(); counterCacheModel.name = getName(); String name = counterCacheModel.name; if ((name != null) && (name.length() == 0)) { counterCacheModel.name = null; } counterCacheModel.currentId = getCurrentId(); return counterCacheModel; } @Override public String toString() { StringBundler sb = new StringBundler(5); sb.append("{name="); sb.append(getName()); sb.append(", currentId="); sb.append(getCurrentId()); sb.append("}"); return sb.toString(); } @Override public String toXmlString() { StringBundler sb = new StringBundler(10); sb.append("<model><model-name>"); sb.append("com.liferay.counter.kernel.model.Counter"); sb.append("</model-name>"); sb.append( "<column><column-name>name</column-name><column-value><![CDATA["); sb.append(getName()); sb.append("]]></column-value></column>"); sb.append( "<column><column-name>currentId</column-name><column-value><![CDATA["); sb.append(getCurrentId()); sb.append("]]></column-value></column>"); sb.append("</model>"); return sb.toString(); } private static final ClassLoader _classLoader = Counter.class.getClassLoader(); private static final Class<?>[] _escapedModelInterfaces = new Class[] { Counter.class }; private String _name; private long _currentId; private Counter _escapedModel; }