com.liferay.portal.kernel.model.ImageWrapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.liferay.portal.kernel Show documentation
Show all versions of com.liferay.portal.kernel Show documentation
Contains interfaces for the portal services. Interfaces are only loaded by the global class loader and are shared by all plugins.
/**
* 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 com.liferay.portal.kernel.util.Validator;
import java.io.Serializable;
import java.util.Date;
import java.util.HashMap;
import java.util.Map;
/**
*
* This class is a wrapper for {@link Image}.
*
*
* @author Brian Wing Shun Chan
* @see Image
* @generated
*/
@ProviderType
public class ImageWrapper implements Image, ModelWrapper {
public ImageWrapper(Image image) {
_image = image;
}
@Override
public Class> getModelClass() {
return Image.class;
}
@Override
public String getModelClassName() {
return Image.class.getName();
}
@Override
public Map getModelAttributes() {
Map attributes = new HashMap();
attributes.put("mvccVersion", getMvccVersion());
attributes.put("imageId", getImageId());
attributes.put("companyId", getCompanyId());
attributes.put("modifiedDate", getModifiedDate());
attributes.put("type", getType());
attributes.put("height", getHeight());
attributes.put("width", getWidth());
attributes.put("size", getSize());
return attributes;
}
@Override
public void setModelAttributes(Map attributes) {
Long mvccVersion = (Long)attributes.get("mvccVersion");
if (mvccVersion != null) {
setMvccVersion(mvccVersion);
}
Long imageId = (Long)attributes.get("imageId");
if (imageId != null) {
setImageId(imageId);
}
Long companyId = (Long)attributes.get("companyId");
if (companyId != null) {
setCompanyId(companyId);
}
Date modifiedDate = (Date)attributes.get("modifiedDate");
if (modifiedDate != null) {
setModifiedDate(modifiedDate);
}
String type = (String)attributes.get("type");
if (type != null) {
setType(type);
}
Integer height = (Integer)attributes.get("height");
if (height != null) {
setHeight(height);
}
Integer width = (Integer)attributes.get("width");
if (width != null) {
setWidth(width);
}
Integer size = (Integer)attributes.get("size");
if (size != null) {
setSize(size);
}
}
@Override
public java.lang.Object clone() {
return new ImageWrapper((Image)_image.clone());
}
@Override
public int compareTo(com.liferay.portal.kernel.model.Image image) {
return _image.compareTo(image);
}
/**
* Returns the company ID of this image.
*
* @return the company ID of this image
*/
@Override
public long getCompanyId() {
return _image.getCompanyId();
}
@Override
public ExpandoBridge getExpandoBridge() {
return _image.getExpandoBridge();
}
/**
* Returns the height of this image.
*
* @return the height of this image
*/
@Override
public int getHeight() {
return _image.getHeight();
}
/**
* Returns the image ID of this image.
*
* @return the image ID of this image
*/
@Override
public long getImageId() {
return _image.getImageId();
}
/**
* Returns the modified date of this image.
*
* @return the modified date of this image
*/
@Override
public Date getModifiedDate() {
return _image.getModifiedDate();
}
/**
* Returns the mvcc version of this image.
*
* @return the mvcc version of this image
*/
@Override
public long getMvccVersion() {
return _image.getMvccVersion();
}
/**
* Returns the primary key of this image.
*
* @return the primary key of this image
*/
@Override
public long getPrimaryKey() {
return _image.getPrimaryKey();
}
@Override
public Serializable getPrimaryKeyObj() {
return _image.getPrimaryKeyObj();
}
/**
* Returns the size of this image.
*
* @return the size of this image
*/
@Override
public int getSize() {
return _image.getSize();
}
@Override
public byte[] getTextObj() {
return _image.getTextObj();
}
/**
* Returns the type of this image.
*
* @return the type of this image
*/
@Override
public java.lang.String getType() {
return _image.getType();
}
/**
* Returns the width of this image.
*
* @return the width of this image
*/
@Override
public int getWidth() {
return _image.getWidth();
}
@Override
public int hashCode() {
return _image.hashCode();
}
@Override
public boolean isCachedModel() {
return _image.isCachedModel();
}
@Override
public boolean isEscapedModel() {
return _image.isEscapedModel();
}
@Override
public boolean isNew() {
return _image.isNew();
}
@Override
public void persist() {
_image.persist();
}
@Override
public void setCachedModel(boolean cachedModel) {
_image.setCachedModel(cachedModel);
}
/**
* Sets the company ID of this image.
*
* @param companyId the company ID of this image
*/
@Override
public void setCompanyId(long companyId) {
_image.setCompanyId(companyId);
}
@Override
public void setExpandoBridgeAttributes(BaseModel> baseModel) {
_image.setExpandoBridgeAttributes(baseModel);
}
@Override
public void setExpandoBridgeAttributes(ExpandoBridge expandoBridge) {
_image.setExpandoBridgeAttributes(expandoBridge);
}
@Override
public void setExpandoBridgeAttributes(ServiceContext serviceContext) {
_image.setExpandoBridgeAttributes(serviceContext);
}
/**
* Sets the height of this image.
*
* @param height the height of this image
*/
@Override
public void setHeight(int height) {
_image.setHeight(height);
}
/**
* Sets the image ID of this image.
*
* @param imageId the image ID of this image
*/
@Override
public void setImageId(long imageId) {
_image.setImageId(imageId);
}
/**
* Sets the modified date of this image.
*
* @param modifiedDate the modified date of this image
*/
@Override
public void setModifiedDate(Date modifiedDate) {
_image.setModifiedDate(modifiedDate);
}
/**
* Sets the mvcc version of this image.
*
* @param mvccVersion the mvcc version of this image
*/
@Override
public void setMvccVersion(long mvccVersion) {
_image.setMvccVersion(mvccVersion);
}
@Override
public void setNew(boolean n) {
_image.setNew(n);
}
/**
* Sets the primary key of this image.
*
* @param primaryKey the primary key of this image
*/
@Override
public void setPrimaryKey(long primaryKey) {
_image.setPrimaryKey(primaryKey);
}
@Override
public void setPrimaryKeyObj(Serializable primaryKeyObj) {
_image.setPrimaryKeyObj(primaryKeyObj);
}
/**
* Sets the size of this image.
*
* @param size the size of this image
*/
@Override
public void setSize(int size) {
_image.setSize(size);
}
@Override
public void setTextObj(byte[] textObj) {
_image.setTextObj(textObj);
}
/**
* Sets the type of this image.
*
* @param type the type of this image
*/
@Override
public void setType(java.lang.String type) {
_image.setType(type);
}
/**
* Sets the width of this image.
*
* @param width the width of this image
*/
@Override
public void setWidth(int width) {
_image.setWidth(width);
}
@Override
public CacheModel toCacheModel() {
return _image.toCacheModel();
}
@Override
public com.liferay.portal.kernel.model.Image toEscapedModel() {
return new ImageWrapper(_image.toEscapedModel());
}
@Override
public java.lang.String toString() {
return _image.toString();
}
@Override
public com.liferay.portal.kernel.model.Image toUnescapedModel() {
return new ImageWrapper(_image.toUnescapedModel());
}
@Override
public java.lang.String toXmlString() {
return _image.toXmlString();
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof ImageWrapper)) {
return false;
}
ImageWrapper imageWrapper = (ImageWrapper)obj;
if (Validator.equals(_image, imageWrapper._image)) {
return true;
}
return false;
}
@Override
public Image getWrappedModel() {
return _image;
}
@Override
public boolean isEntityCacheEnabled() {
return _image.isEntityCacheEnabled();
}
@Override
public boolean isFinderCacheEnabled() {
return _image.isFinderCacheEnabled();
}
@Override
public void resetOriginalValues() {
_image.resetOriginalValues();
}
private final Image _image;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy