/** * 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.shopping.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.exception.PortalException; import com.liferay.portal.kernel.json.JSON; import com.liferay.portal.kernel.model.CacheModel; 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.ProxyUtil; import com.liferay.portal.kernel.util.StringBundler; import com.liferay.portal.kernel.util.StringPool; import com.liferay.shopping.model.ShoppingCategory; import com.liferay.shopping.model.ShoppingCategoryModel; import com.liferay.shopping.model.ShoppingCategorySoap; import java.io.Serializable; import java.sql.Types; import java.util.ArrayList; import java.util.Date; import java.util.HashMap; import java.util.List; import java.util.Map; /** * The base model implementation for the ShoppingCategory service. Represents a row in the "ShoppingCategory" database table, with each column mapped to a property of this class. * * <p> * This implementation and its corresponding interface {@link ShoppingCategoryModel} exist only as a container for the default property accessors generated by ServiceBuilder. Helper methods and all application logic should be put in {@link ShoppingCategoryImpl}. * </p> * * @author Brian Wing Shun Chan * @see ShoppingCategoryImpl * @see ShoppingCategory * @see ShoppingCategoryModel * @generated */ @JSON(strict = true) @ProviderType public class ShoppingCategoryModelImpl extends BaseModelImpl<ShoppingCategory> implements ShoppingCategoryModel { /* * NOTE FOR DEVELOPERS: * * Never modify or reference this class directly. All methods that expect a shopping category model instance should use the {@link ShoppingCategory} interface instead. */ public static final String TABLE_NAME = "ShoppingCategory"; public static final Object[][] TABLE_COLUMNS = { { "categoryId", Types.BIGINT }, { "groupId", Types.BIGINT }, { "companyId", Types.BIGINT }, { "userId", Types.BIGINT }, { "userName", Types.VARCHAR }, { "createDate", Types.TIMESTAMP }, { "modifiedDate", Types.TIMESTAMP }, { "parentCategoryId", Types.BIGINT }, { "name", Types.VARCHAR }, { "description", Types.VARCHAR } }; public static final Map<String, Integer> TABLE_COLUMNS_MAP = new HashMap<String, Integer>(); static { TABLE_COLUMNS_MAP.put("categoryId", Types.BIGINT); TABLE_COLUMNS_MAP.put("groupId", 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("parentCategoryId", Types.BIGINT); TABLE_COLUMNS_MAP.put("name", Types.VARCHAR); TABLE_COLUMNS_MAP.put("description", Types.VARCHAR); } public static final String TABLE_SQL_CREATE = "create table ShoppingCategory (categoryId LONG not null primary key,groupId LONG,companyId LONG,userId LONG,userName VARCHAR(75) null,createDate DATE null,modifiedDate DATE null,parentCategoryId LONG,name VARCHAR(75) null,description STRING null)"; public static final String TABLE_SQL_DROP = "drop table ShoppingCategory"; public static final String ORDER_BY_JPQL = " ORDER BY shoppingCategory.parentCategoryId ASC, shoppingCategory.name ASC"; public static final String ORDER_BY_SQL = " ORDER BY ShoppingCategory.parentCategoryId ASC, ShoppingCategory.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.shopping.service.util.ServiceProps.get( "value.object.entity.cache.enabled.com.liferay.shopping.model.ShoppingCategory"), true); public static final boolean FINDER_CACHE_ENABLED = GetterUtil.getBoolean(com.liferay.shopping.service.util.ServiceProps.get( "value.object.finder.cache.enabled.com.liferay.shopping.model.ShoppingCategory"), true); public static final boolean COLUMN_BITMASK_ENABLED = GetterUtil.getBoolean(com.liferay.shopping.service.util.ServiceProps.get( "value.object.column.bitmask.enabled.com.liferay.shopping.model.ShoppingCategory"), true); public static final long GROUPID_COLUMN_BITMASK = 1L; public static final long NAME_COLUMN_BITMASK = 2L; public static final long PARENTCATEGORYID_COLUMN_BITMASK = 4L; /** * Converts the soap model instance into a normal model instance. * * @param soapModel the soap model instance to convert * @return the normal model instance */ public static ShoppingCategory toModel(ShoppingCategorySoap soapModel) { if (soapModel == null) { return null; } ShoppingCategory model = new ShoppingCategoryImpl(); model.setCategoryId(soapModel.getCategoryId()); model.setGroupId(soapModel.getGroupId()); model.setCompanyId(soapModel.getCompanyId()); model.setUserId(soapModel.getUserId()); model.setUserName(soapModel.getUserName()); model.setCreateDate(soapModel.getCreateDate()); model.setModifiedDate(soapModel.getModifiedDate()); model.setParentCategoryId(soapModel.getParentCategoryId()); model.setName(soapModel.getName()); model.setDescription(soapModel.getDescription()); return model; } /** * Converts the soap model instances into normal model instances. * * @param soapModels the soap model instances to convert * @return the normal model instances */ public static List<ShoppingCategory> toModels( ShoppingCategorySoap[] soapModels) { if (soapModels == null) { return null; } List<ShoppingCategory> models = new ArrayList<ShoppingCategory>(soapModels.length); for (ShoppingCategorySoap soapModel : soapModels) { models.add(toModel(soapModel)); } return models; } public static final long LOCK_EXPIRATION_TIME = GetterUtil.getLong(com.liferay.shopping.service.util.ServiceProps.get( "lock.expiration.time.com.liferay.shopping.model.ShoppingCategory")); public ShoppingCategoryModelImpl() { } @Override public long getPrimaryKey() { return _categoryId; } @Override public void setPrimaryKey(long primaryKey) { setCategoryId(primaryKey); } @Override public Serializable getPrimaryKeyObj() { return _categoryId; } @Override public void setPrimaryKeyObj(Serializable primaryKeyObj) { setPrimaryKey(((Long)primaryKeyObj).longValue()); } @Override public Class<?> getModelClass() { return ShoppingCategory.class; } @Override public String getModelClassName() { return ShoppingCategory.class.getName(); } @Override public Map<String, Object> getModelAttributes() { Map<String, Object> attributes = new HashMap<String, Object>(); attributes.put("categoryId", getCategoryId()); attributes.put("groupId", getGroupId()); attributes.put("companyId", getCompanyId()); attributes.put("userId", getUserId()); attributes.put("userName", getUserName()); attributes.put("createDate", getCreateDate()); attributes.put("modifiedDate", getModifiedDate()); attributes.put("parentCategoryId", getParentCategoryId()); attributes.put("name", getName()); attributes.put("description", getDescription()); attributes.put("entityCacheEnabled", isEntityCacheEnabled()); attributes.put("finderCacheEnabled", isFinderCacheEnabled()); return attributes; } @Override public void setModelAttributes(Map<String, Object> attributes) { Long categoryId = (Long)attributes.get("categoryId"); if (categoryId != null) { setCategoryId(categoryId); } Long groupId = (Long)attributes.get("groupId"); if (groupId != null) { setGroupId(groupId); } Long companyId = (Long)attributes.get("companyId"); if (companyId != null) { setCompanyId(companyId); } Long userId = (Long)attributes.get("userId"); if (userId != null) { setUserId(userId); } String userName = (String)attributes.get("userName"); if (userName != null) { setUserName(userName); } Date createDate = (Date)attributes.get("createDate"); if (createDate != null) { setCreateDate(createDate); } Date modifiedDate = (Date)attributes.get("modifiedDate"); if (modifiedDate != null) { setModifiedDate(modifiedDate); } Long parentCategoryId = (Long)attributes.get("parentCategoryId"); if (parentCategoryId != null) { setParentCategoryId(parentCategoryId); } String name = (String)attributes.get("name"); if (name != null) { setName(name); } String description = (String)attributes.get("description"); if (description != null) { setDescription(description); } } @JSON @Override public long getCategoryId() { return _categoryId; } @Override public void setCategoryId(long categoryId) { _categoryId = categoryId; } @JSON @Override public long getGroupId() { return _groupId; } @Override public void setGroupId(long groupId) { _columnBitmask |= GROUPID_COLUMN_BITMASK; if (!_setOriginalGroupId) { _setOriginalGroupId = true; _originalGroupId = _groupId; } _groupId = groupId; } public long getOriginalGroupId() { return _originalGroupId; } @JSON @Override public long getCompanyId() { return _companyId; } @Override public void setCompanyId(long companyId) { _companyId = companyId; } @JSON @Override public long getUserId() { return _userId; } @Override public void setUserId(long userId) { _userId = userId; } @Override public String getUserUuid() { try { User user = UserLocalServiceUtil.getUserById(getUserId()); return user.getUuid(); } catch (PortalException pe) { return StringPool.BLANK; } } @Override public void setUserUuid(String userUuid) { } @JSON @Override public String getUserName() { if (_userName == null) { return StringPool.BLANK; } else { return _userName; } } @Override public void setUserName(String userName) { _userName = userName; } @JSON @Override public Date getCreateDate() { return _createDate; } @Override public void setCreateDate(Date createDate) { _createDate = createDate; } @JSON @Override public Date getModifiedDate() { return _modifiedDate; } public boolean hasSetModifiedDate() { return _setModifiedDate; } @Override public void setModifiedDate(Date modifiedDate) { _setModifiedDate = true; _modifiedDate = modifiedDate; } @JSON @Override public long getParentCategoryId() { return _parentCategoryId; } @Override public void setParentCategoryId(long parentCategoryId) { _columnBitmask = -1L; if (!_setOriginalParentCategoryId) { _setOriginalParentCategoryId = true; _originalParentCategoryId = _parentCategoryId; } _parentCategoryId = parentCategoryId; } public long getOriginalParentCategoryId() { return _originalParentCategoryId; } @JSON @Override public String getName() { if (_name == null) { return StringPool.BLANK; } else { return _name; } } @Override public void setName(String name) { _columnBitmask = -1L; if (_originalName == null) { _originalName = _name; } _name = name; } public String getOriginalName() { return GetterUtil.getString(_originalName); } @JSON @Override public String getDescription() { if (_description == null) { return StringPool.BLANK; } else { return _description; } } @Override public void setDescription(String description) { _description = description; } public long getColumnBitmask() { return _columnBitmask; } @Override public ExpandoBridge getExpandoBridge() { return ExpandoBridgeFactoryUtil.getExpandoBridge(getCompanyId(), ShoppingCategory.class.getName(), getPrimaryKey()); } @Override public void setExpandoBridgeAttributes(ServiceContext serviceContext) { ExpandoBridge expandoBridge = getExpandoBridge(); expandoBridge.setAttributes(serviceContext); } @Override public ShoppingCategory toEscapedModel() { if (_escapedModel == null) { _escapedModel = (ShoppingCategory)ProxyUtil.newProxyInstance(_classLoader, _escapedModelInterfaces, new AutoEscapeBeanHandler(this)); } return _escapedModel; } @Override public Object clone() { ShoppingCategoryImpl shoppingCategoryImpl = new ShoppingCategoryImpl(); shoppingCategoryImpl.setCategoryId(getCategoryId()); shoppingCategoryImpl.setGroupId(getGroupId()); shoppingCategoryImpl.setCompanyId(getCompanyId()); shoppingCategoryImpl.setUserId(getUserId()); shoppingCategoryImpl.setUserName(getUserName()); shoppingCategoryImpl.setCreateDate(getCreateDate()); shoppingCategoryImpl.setModifiedDate(getModifiedDate()); shoppingCategoryImpl.setParentCategoryId(getParentCategoryId()); shoppingCategoryImpl.setName(getName()); shoppingCategoryImpl.setDescription(getDescription()); shoppingCategoryImpl.resetOriginalValues(); return shoppingCategoryImpl; } @Override public int compareTo(ShoppingCategory shoppingCategory) { int value = 0; if (getParentCategoryId() < shoppingCategory.getParentCategoryId()) { value = -1; } else if (getParentCategoryId() > shoppingCategory.getParentCategoryId()) { value = 1; } else { value = 0; } if (value != 0) { return value; } value = getName().compareToIgnoreCase(shoppingCategory.getName()); if (value != 0) { return value; } return 0; } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (!(obj instanceof ShoppingCategory)) { return false; } ShoppingCategory shoppingCategory = (ShoppingCategory)obj; long primaryKey = shoppingCategory.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() { ShoppingCategoryModelImpl shoppingCategoryModelImpl = this; shoppingCategoryModelImpl._originalGroupId = shoppingCategoryModelImpl._groupId; shoppingCategoryModelImpl._setOriginalGroupId = false; shoppingCategoryModelImpl._setModifiedDate = false; shoppingCategoryModelImpl._originalParentCategoryId = shoppingCategoryModelImpl._parentCategoryId; shoppingCategoryModelImpl._setOriginalParentCategoryId = false; shoppingCategoryModelImpl._originalName = shoppingCategoryModelImpl._name; shoppingCategoryModelImpl._columnBitmask = 0; } @Override public CacheModel<ShoppingCategory> toCacheModel() { ShoppingCategoryCacheModel shoppingCategoryCacheModel = new ShoppingCategoryCacheModel(); shoppingCategoryCacheModel.categoryId = getCategoryId(); shoppingCategoryCacheModel.groupId = getGroupId(); shoppingCategoryCacheModel.companyId = getCompanyId(); shoppingCategoryCacheModel.userId = getUserId(); shoppingCategoryCacheModel.userName = getUserName(); String userName = shoppingCategoryCacheModel.userName; if ((userName != null) && (userName.length() == 0)) { shoppingCategoryCacheModel.userName = null; } Date createDate = getCreateDate(); if (createDate != null) { shoppingCategoryCacheModel.createDate = createDate.getTime(); } else { shoppingCategoryCacheModel.createDate = Long.MIN_VALUE; } Date modifiedDate = getModifiedDate(); if (modifiedDate != null) { shoppingCategoryCacheModel.modifiedDate = modifiedDate.getTime(); } else { shoppingCategoryCacheModel.modifiedDate = Long.MIN_VALUE; } shoppingCategoryCacheModel.parentCategoryId = getParentCategoryId(); shoppingCategoryCacheModel.name = getName(); String name = shoppingCategoryCacheModel.name; if ((name != null) && (name.length() == 0)) { shoppingCategoryCacheModel.name = null; } shoppingCategoryCacheModel.description = getDescription(); String description = shoppingCategoryCacheModel.description; if ((description != null) && (description.length() == 0)) { shoppingCategoryCacheModel.description = null; } return shoppingCategoryCacheModel; } @Override public String toString() { StringBundler sb = new StringBundler(21); sb.append("{categoryId="); sb.append(getCategoryId()); sb.append(", groupId="); sb.append(getGroupId()); sb.append(", companyId="); sb.append(getCompanyId()); sb.append(", userId="); sb.append(getUserId()); sb.append(", userName="); sb.append(getUserName()); sb.append(", createDate="); sb.append(getCreateDate()); sb.append(", modifiedDate="); sb.append(getModifiedDate()); sb.append(", parentCategoryId="); sb.append(getParentCategoryId()); sb.append(", name="); sb.append(getName()); sb.append(", description="); sb.append(getDescription()); sb.append("}"); return sb.toString(); } @Override public String toXmlString() { StringBundler sb = new StringBundler(34); sb.append("<model><model-name>"); sb.append("com.liferay.shopping.model.ShoppingCategory"); sb.append("</model-name>"); sb.append( "<column><column-name>categoryId</column-name><column-value><![CDATA["); sb.append(getCategoryId()); sb.append("]]></column-value></column>"); sb.append( "<column><column-name>groupId</column-name><column-value><![CDATA["); sb.append(getGroupId()); sb.append("]]></column-value></column>"); sb.append( "<column><column-name>companyId</column-name><column-value><![CDATA["); sb.append(getCompanyId()); sb.append("]]></column-value></column>"); sb.append( "<column><column-name>userId</column-name><column-value><![CDATA["); sb.append(getUserId()); sb.append("]]></column-value></column>"); sb.append( "<column><column-name>userName</column-name><column-value><![CDATA["); sb.append(getUserName()); sb.append("]]></column-value></column>"); sb.append( "<column><column-name>createDate</column-name><column-value><![CDATA["); sb.append(getCreateDate()); sb.append("]]></column-value></column>"); sb.append( "<column><column-name>modifiedDate</column-name><column-value><![CDATA["); sb.append(getModifiedDate()); sb.append("]]></column-value></column>"); sb.append( "<column><column-name>parentCategoryId</column-name><column-value><![CDATA["); sb.append(getParentCategoryId()); sb.append("]]></column-value></column>"); sb.append( "<column><column-name>name</column-name><column-value><![CDATA["); sb.append(getName()); sb.append("]]></column-value></column>"); sb.append( "<column><column-name>description</column-name><column-value><![CDATA["); sb.append(getDescription()); sb.append("]]></column-value></column>"); sb.append("</model>"); return sb.toString(); } private static final ClassLoader _classLoader = ShoppingCategory.class.getClassLoader(); private static final Class<?>[] _escapedModelInterfaces = new Class[] { ShoppingCategory.class }; private long _categoryId; private long _groupId; private long _originalGroupId; private boolean _setOriginalGroupId; private long _companyId; private long _userId; private String _userName; private Date _createDate; private Date _modifiedDate; private boolean _setModifiedDate; private long _parentCategoryId; private long _originalParentCategoryId; private boolean _setOriginalParentCategoryId; private String _name; private String _originalName; private String _description; private long _columnBitmask; private ShoppingCategory _escapedModel; }