All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.eurodyn.qlack.fuse.cm.model.Version Maven / Gradle / Ivy

There is a newer version: 3.6.8
Show newest version
package com.eurodyn.qlack.fuse.cm.model;

import com.eurodyn.qlack.common.model.QlackBaseModel;
import java.util.List;
import jakarta.persistence.CascadeType;
import jakarta.persistence.Column;
import jakarta.persistence.Entity;
import jakarta.persistence.JoinColumn;
import jakarta.persistence.ManyToOne;
import jakarta.persistence.OneToMany;
import jakarta.persistence.Table;
import lombok.Getter;
import lombok.Setter;

@Entity
@Table(name = "cm_version")
@Getter
@Setter
public class Version extends QlackBaseModel {

  @jakarta.persistence.Version
  private long dbversion;
  private String name;
  @ManyToOne
  @JoinColumn(name = "node")
  private Node node;
  @Column(name = "created_on")
  private long createdOn;
  private String filename;
  // The media type of the latest version.
  private String mimetype;

  // The size of the latest version.
  private Long size;
  @OneToMany(mappedBy = "version", cascade = CascadeType.ALL)
  private List attributes;
  @OneToMany(mappedBy = "version", cascade = CascadeType.ALL, orphanRemoval = true)
  private List versionBins;

  public VersionAttribute getAttribute(String name) {
    for (VersionAttribute attribute : attributes) {
      if (attribute.getName().equals(name)) {
        return attribute;
      }
    }
    return null;
  }

  public void setAttribute(String name, String value) {
    VersionAttribute attribute = getAttribute(name);
    if (attribute == null) {
      attribute = new VersionAttribute();
      attribute.setVersion(this);
      attribute.setName(name);
      attributes.add(attribute);
    }
    attribute.setValue(value);
  }

  public void removeAttribute(String name) {
    VersionAttribute attribute = getAttribute(name);
    getAttributes().remove(attribute);
    attribute.setVersion(null);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy