net.maritimecloud.identityregistry.model.database.CertificateModel.java Source code

Java tutorial

Introduction

Here is the source code for net.maritimecloud.identityregistry.model.database.CertificateModel.java

Source

/* Copyright 2016 Danish Maritime Authority.
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */
package net.maritimecloud.identityregistry.model.database;

import com.fasterxml.jackson.annotation.JsonIgnore;

import java.util.Calendar;
import java.util.Date;
import java.util.List;

import javax.persistence.*;

@MappedSuperclass
public abstract class CertificateModel extends TimestampModel {

    @PostPersist
    @PostUpdate
    public void setChildIds() {
        if (getCertificates() != null) {
            for (Certificate cert : getCertificates()) {
                this.assignToCert(cert);
            }
        }
    }

    @PreRemove
    public void preRemove() {
        if (getCertificates() != null) {
            // Dates are converted to UTC before saving into the DB
            Calendar cal = Calendar.getInstance();
            long offset = cal.get(Calendar.ZONE_OFFSET) + cal.get(Calendar.DST_OFFSET);
            Date now = new Date(cal.getTimeInMillis() - offset);
            for (Certificate cert : getCertificates()) {
                // Revoke certificates
                cert.setRevokedAt(now);
                cert.setEnd(now);
                cert.setRevokeReason("cessationofoperation");
                cert.setRevoked(true);
                // Detach certificate from entity - since the model type isn't known, just blank all.
                cert.setOrganization(null);
                cert.setDevice(null);
                cert.setService(null);
                cert.setUser(null);
                cert.setVessel(null);
            }
        }
    }

    public abstract List<Certificate> getCertificates();

    @JsonIgnore
    public abstract void assignToCert(Certificate cert); // Do something like cert.set<ModelName>(this)
}