/** * 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.kernel.model; import aQute.bnd.annotation.ProviderType; import com.liferay.expando.kernel.model.ExpandoBridge; import com.liferay.portal.kernel.service.ServiceContext; import java.io.Serializable; import java.util.HashMap; import java.util.Map; import java.util.Objects; /** * <p> * This class is a wrapper for {@link ListType}. * </p> * * @author Brian Wing Shun Chan * @see ListType * @generated */ @ProviderType public class ListTypeWrapper implements ListType, ModelWrapper<ListType> { public ListTypeWrapper(ListType listType) { _listType = listType; } @Override public Class<?> getModelClass() { return ListType.class; } @Override public String getModelClassName() { return ListType.class.getName(); } @Override public Map<String, Object> getModelAttributes() { Map<String, Object> attributes = new HashMap<String, Object>(); attributes.put("mvccVersion", getMvccVersion()); attributes.put("listTypeId", getListTypeId()); attributes.put("name", getName()); attributes.put("type", getType()); return attributes; } @Override public void setModelAttributes(Map<String, Object> attributes) { Long mvccVersion = (Long)attributes.get("mvccVersion"); if (mvccVersion != null) { setMvccVersion(mvccVersion); } Long listTypeId = (Long)attributes.get("listTypeId"); if (listTypeId != null) { setListTypeId(listTypeId); } String name = (String)attributes.get("name"); if (name != null) { setName(name); } String type = (String)attributes.get("type"); if (type != null) { setType(type); } } @Override public CacheModel<ListType> toCacheModel() { return _listType.toCacheModel(); } @Override public ListType toEscapedModel() { return new ListTypeWrapper(_listType.toEscapedModel()); } @Override public ListType toUnescapedModel() { return new ListTypeWrapper(_listType.toUnescapedModel()); } @Override public boolean isCachedModel() { return _listType.isCachedModel(); } @Override public boolean isEscapedModel() { return _listType.isEscapedModel(); } @Override public boolean isNew() { return _listType.isNew(); } @Override public ExpandoBridge getExpandoBridge() { return _listType.getExpandoBridge(); } @Override public int compareTo(ListType listType) { return _listType.compareTo(listType); } @Override public int hashCode() { return _listType.hashCode(); } @Override public Serializable getPrimaryKeyObj() { return _listType.getPrimaryKeyObj(); } @Override public java.lang.Object clone() { return new ListTypeWrapper((ListType)_listType.clone()); } /** * Returns the name of this list type. * * @return the name of this list type */ @Override public java.lang.String getName() { return _listType.getName(); } /** * Returns the type of this list type. * * @return the type of this list type */ @Override public java.lang.String getType() { return _listType.getType(); } @Override public java.lang.String toString() { return _listType.toString(); } @Override public java.lang.String toXmlString() { return _listType.toXmlString(); } /** * Returns the list type ID of this list type. * * @return the list type ID of this list type */ @Override public long getListTypeId() { return _listType.getListTypeId(); } /** * Returns the mvcc version of this list type. * * @return the mvcc version of this list type */ @Override public long getMvccVersion() { return _listType.getMvccVersion(); } /** * Returns the primary key of this list type. * * @return the primary key of this list type */ @Override public long getPrimaryKey() { return _listType.getPrimaryKey(); } @Override public void persist() { _listType.persist(); } @Override public void setCachedModel(boolean cachedModel) { _listType.setCachedModel(cachedModel); } @Override public void setExpandoBridgeAttributes(BaseModel<?> baseModel) { _listType.setExpandoBridgeAttributes(baseModel); } @Override public void setExpandoBridgeAttributes(ExpandoBridge expandoBridge) { _listType.setExpandoBridgeAttributes(expandoBridge); } @Override public void setExpandoBridgeAttributes(ServiceContext serviceContext) { _listType.setExpandoBridgeAttributes(serviceContext); } /** * Sets the list type ID of this list type. * * @param listTypeId the list type ID of this list type */ @Override public void setListTypeId(long listTypeId) { _listType.setListTypeId(listTypeId); } /** * Sets the mvcc version of this list type. * * @param mvccVersion the mvcc version of this list type */ @Override public void setMvccVersion(long mvccVersion) { _listType.setMvccVersion(mvccVersion); } /** * Sets the name of this list type. * * @param name the name of this list type */ @Override public void setName(java.lang.String name) { _listType.setName(name); } @Override public void setNew(boolean n) { _listType.setNew(n); } /** * Sets the primary key of this list type. * * @param primaryKey the primary key of this list type */ @Override public void setPrimaryKey(long primaryKey) { _listType.setPrimaryKey(primaryKey); } @Override public void setPrimaryKeyObj(Serializable primaryKeyObj) { _listType.setPrimaryKeyObj(primaryKeyObj); } /** * Sets the type of this list type. * * @param type the type of this list type */ @Override public void setType(java.lang.String type) { _listType.setType(type); } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (!(obj instanceof ListTypeWrapper)) { return false; } ListTypeWrapper listTypeWrapper = (ListTypeWrapper)obj; if (Objects.equals(_listType, listTypeWrapper._listType)) { return true; } return false; } @Override public ListType getWrappedModel() { return _listType; } @Override public boolean isEntityCacheEnabled() { return _listType.isEntityCacheEnabled(); } @Override public boolean isFinderCacheEnabled() { return _listType.isFinderCacheEnabled(); } @Override public void resetOriginalValues() { _listType.resetOriginalValues(); } private final ListType _listType; }