142 lines
4.0 KiB
Java
142 lines
4.0 KiB
Java
/*
|
|
* Copyright (C) 2016 LibreCCM Foundation.
|
|
*
|
|
* 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.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
* MA 02110-1301 USA
|
|
*/
|
|
package org.librecms.assets;
|
|
|
|
import com.arsdigita.cms.ui.assets.forms.AudioForm;
|
|
import org.hibernate.envers.Audited;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.Objects;
|
|
|
|
import javax.persistence.Column;
|
|
import javax.persistence.Entity;
|
|
import javax.persistence.JoinColumn;
|
|
import javax.persistence.OneToOne;
|
|
import javax.persistence.Table;
|
|
|
|
import static org.librecms.CmsConstants.*;
|
|
import static org.librecms.assets.AssetConstants.ASSETS_BUNDLE;
|
|
|
|
/**
|
|
* An asset for videos.
|
|
*
|
|
* @author <a href="mailto:jens.pelzetter@googlemail.com">Jens Pelzetter</a>
|
|
*/
|
|
@Entity
|
|
@Table(name = "VIDEO_ASSETS", schema = DB_SCHEMA)
|
|
@Audited
|
|
@AssetType(assetForm = AudioForm.class,
|
|
labelKey = "video_asset.label",
|
|
labelBundle = ASSETS_BUNDLE,
|
|
descriptionKey = "video_asset.description",
|
|
descriptionBundle = ASSETS_BUNDLE)
|
|
public class VideoAsset extends BinaryAsset implements Serializable {
|
|
|
|
private static final long serialVersionUID = -4377789857099678289L;
|
|
|
|
@Column(name = "WIDTH")
|
|
private long width;
|
|
|
|
@Column(name = "HEIGHT")
|
|
private long height;
|
|
|
|
@OneToOne
|
|
@JoinColumn(name = "LEGAL_METADATA_ID")
|
|
private LegalMetadata legalMetadata;
|
|
|
|
public long getWidth() {
|
|
return width;
|
|
}
|
|
|
|
public void setWidth(final long width) {
|
|
this.width = width;
|
|
}
|
|
|
|
public long getHeight() {
|
|
return height;
|
|
}
|
|
|
|
public void setHeight(final long height) {
|
|
this.height = height;
|
|
}
|
|
|
|
public LegalMetadata getLegalMetadata() {
|
|
return legalMetadata;
|
|
}
|
|
|
|
public void setLegalMetadata(final LegalMetadata legalMetadata) {
|
|
this.legalMetadata = legalMetadata;
|
|
}
|
|
|
|
@Override
|
|
public int hashCode() {
|
|
int hash = super.hashCode();
|
|
hash = 97 * hash + (int) (width ^ (width >>> 32));
|
|
hash = 97 * hash + (int) (height ^ (height >>> 32));
|
|
hash = 97 * hash + Objects.hashCode(legalMetadata);
|
|
return hash;
|
|
}
|
|
|
|
@Override
|
|
public boolean equals(final Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (obj == null) {
|
|
return false;
|
|
}
|
|
if (!super.equals(obj)) {
|
|
return false;
|
|
}
|
|
|
|
if (obj instanceof VideoAsset) {
|
|
return false;
|
|
}
|
|
final VideoAsset other = (VideoAsset) obj;
|
|
if (!other.canEqual(obj)) {
|
|
return false;
|
|
}
|
|
|
|
if (width != other.getWidth()) {
|
|
return false;
|
|
}
|
|
if (height != other.getHeight()) {
|
|
return false;
|
|
}
|
|
return Objects.equals(legalMetadata, other.getLegalMetadata());
|
|
}
|
|
|
|
@Override
|
|
public boolean canEqual(final Object obj) {
|
|
return obj instanceof VideoAsset;
|
|
}
|
|
|
|
@Override
|
|
public String toString(final String data) {
|
|
return super.toString(String.format(", width = %d, "
|
|
+ "height = %d, "
|
|
+ "legalMetadata = %s%s",
|
|
width,
|
|
height,
|
|
Objects.toString(legalMetadata),
|
|
data));
|
|
}
|
|
|
|
}
|