de.mklinger.qetcher.liferay.client.impl.abstraction.ImageImpl Maven / Gradle / Ivy
/*
* Copyright 2013-present mklinger GmbH - http://www.mklinger.de
*
* All rights reserved.
*
* NOTICE: All information contained herein is, and remains
* the property of mklinger GmbH and its suppliers, if any.
* The intellectual and technical concepts contained herein are
* proprietary to mklinger GmbH and its suppliers and are protected
* by trade secret or copyright law. Dissemination of this
* information or reproduction of this material is strictly forbidden
* unless prior written permission is obtained from mklinger GmbH.
*/
package de.mklinger.qetcher.liferay.client.impl.abstraction;
import java.util.Date;
import de.mklinger.qetcher.liferay.abstraction.Image;
/**
* @author Marc Klinger - mklinger[at]mklinger[dot]de
*/
public class ImageImpl implements Image {
private long imageId;
private int width;
private int height;
private byte[] textObj;
private String type;
private Date modifiedDate;
public Date getModifiedDate() {
return modifiedDate;
}
@Override
public void setModifiedDate(final Date modifiedDate) {
this.modifiedDate = modifiedDate;
}
@Override
public long getImageId() {
return imageId;
}
public void setImageId(final long imageId) {
this.imageId = imageId;
}
@Override
public int getWidth() {
return width;
}
@Override
public void setWidth(final int width) {
this.width = width;
}
@Override
public int getHeight() {
return height;
}
@Override
public void setHeight(final int height) {
this.height = height;
}
@Override
public byte[] getTextObj() {
return textObj;
}
@Override
public void setTextObj(final byte[] textObj) {
this.textObj = textObj;
}
@Override
public String getType() {
return type;
}
@Override
public void setType(final String type) {
this.type = type;
}
}