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

nl.vpro.domain.DomainObject Maven / Gradle / Ivy

Go to download

Several domains like 'media', pages' and 'subtitles' in the POMS system share some common properties which are collected here

There is a newer version: 8.3.0
Show newest version
/*
 * Copyright (C) 2007/2008 Licensed under the Apache License, Version 2.0
 * VPRO, The Netherlands
 */

package nl.vpro.domain;

import lombok.Getter;
import lombok.ToString;

import java.io.Serial;
import java.io.Serializable;

import javax.persistence.*;
import javax.xml.bind.annotation.XmlTransient;

import org.checkerframework.checker.nullness.qual.MonotonicNonNull;

import com.fasterxml.jackson.annotation.JsonFilter;

import nl.vpro.domain.bind.PublicationFilter;
import nl.vpro.jackson2.Jackson2Mapper;


/**
 * A domain object is an {@link Identifiable} which serves a as a base class for the domain entities in the POMS universe that have their own id.
 *
 * @author roekoe
 */
@MappedSuperclass
@ToString
@XmlTransient
@JsonFilter("publicationFilter")
public abstract class DomainObject implements Identifiable, Serializable {

    //@Serial
    @Serial
    private static final long serialVersionUID = 6335921198095424865L;

    static {
        Jackson2Mapper.addFilter("publicationFilter", new PublicationFilter());
    }

    @Id
    @SequenceGenerator(name = "hibernate_sequences", sequenceName = "hibernate_sequence", allocationSize = 1)
    @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "hibernate_sequences")
    @XmlTransient // Don't remove!
    @Getter
    @MonotonicNonNull
    protected Long id;

    @Transient
    @XmlTransient
    @Getter
    private boolean persisted;

    public DomainObject() {
    }

    protected DomainObject(Long id) {
        this.id = id;
    }
    /**
     * Under normal operation this should not be used!
     * 

* While testing it sometimes comes in handy to be able to set an Id to simulate * a persisted object. */ public DomainObject setId(Long id) { this.id = id; return this; } /** * Checks for database identity or object identity if one side of the comparison can * not supply a database identity. It is advised to override this method with a more * accurate test which should not rely on database identity. You can rely on this * criterion when equality can not be deducted programmatic and a real and final * check is in need of human interaction. In essence this check then states that two * objects are supposed to be different if they can't supply the same database Id. * * @param object the object to compare with * @return true if both objects are equal */ @Override public boolean equals(Object object) { if(object == null) { return false; } if(this.getClass() != object.getClass()) { return false; } DomainObject that = (DomainObject)object; if(this.getId() != null && that.getId() != null) { return this.getId().equals(that.getId()); } return this == that; } @Override public int hashCode() { return id != null ? id.hashCode() : super.hashCode(); } protected final int superHashCode() { return super.hashCode(); } @PostLoad @PostPersist void setPersisted() { persisted = true; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy