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

org.mycore.backend.jpa.access.MCRACCESSRULE Maven / Gradle / Ivy

There is a newer version: 2024.05
Show newest version
/*
 * This file is part of ***  M y C o R e  ***
 * See http://www.mycore.de/ for details.
 *
 * MyCoRe is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * MyCoRe 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with MyCoRe.  If not, see .
 */

package org.mycore.backend.jpa.access;

import java.sql.Timestamp;

import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;

@Entity
@Table(name = "MCRACCESSRULE")
public class MCRACCESSRULE {

    @Id
    @Column(name = "RID")
    private String rid;

    @Column(name = "CREATOR", length = 64, nullable = false)
    private String creator;

    @Column(name = "CREATIONDATE", length = 64, nullable = false)
    private Timestamp creationdate;

    @Column(name = "RULE", length = 2048000, nullable = false)
    private String rule;

    @Column(name = "DESCRIPTION", length = 255, nullable = false)
    private String description;

    public Timestamp getCreationdate() {
        return creationdate;
    }

    public void setCreationdate(Timestamp creationdate) {
        this.creationdate = creationdate;
    }

    public String getCreator() {
        return creator;
    }

    public void setCreator(String creator) {
        this.creator = creator;
    }

    public String getDescription() {
        return description;
    }

    public void setDescription(String description) {
        this.description = description;
    }

    public String getRid() {
        return rid;
    }

    public void setRid(String rid) {
        this.rid = rid;
    }

    public String getRule() {
        return rule;
    }

    public void setRule(String rule) {
        this.rule = rule;
    }

    @Override
    public int hashCode() {
        final int prime = 31;
        int result = 1;
        result = prime * result + (creationdate == null ? 0 : creationdate.hashCode());
        result = prime * result + (creator == null ? 0 : creator.hashCode());
        result = prime * result + (description == null ? 0 : description.hashCode());
        result = prime * result + (rid == null ? 0 : rid.hashCode());
        result = prime * result + (rule == null ? 0 : rule.hashCode());
        return result;
    }

    @Override
    public boolean equals(Object obj) {
        System.out.println("EQUALS");
        if (this == obj) {
            return true;
        }
        if (obj == null) {
            return false;
        }
        if (!(obj instanceof MCRACCESSRULE)) {
            return false;
        }
        final MCRACCESSRULE other = (MCRACCESSRULE) obj;
        if (creationdate == null) {
            if (other.getCreationdate() != null) {
                return false;
            }
        } else {
            if (other.getCreationdate() == null) {
                return false;
            }
            // We will remove milliseconds as they don't need to be saved
            long thisLong = creationdate.getTime() / 1000;
            long otherLong = other.getCreationdate().getTime() / 1000;
            if (thisLong != otherLong) {
                return false;
            }
        }
        if (creator == null) {
            if (other.getCreator() != null) {
                return false;
            }
        } else if (!creator.equals(other.getCreator())) {
            return false;
        }
        if (description == null) {
            if (other.getDescription() != null) {
                return false;
            }
        } else if (!description.equals(other.getDescription())) {
            return false;
        }
        if (rid == null) {
            if (other.getRid() != null) {
                return false;
            }
        } else if (!rid.equals(other.getRid())) {
            return false;
        }
        if (rule == null) {
            return other.getRule() == null;
        } else {
            return rule.equals(other.getRule());
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy