/*
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
|
*/
|
package com.megatim.fdxconvert.pojo;
|
|
import javax.persistence.MappedSuperclass;
|
import javax.persistence.Transient;
|
import lombok.Getter;
|
import lombok.Setter;
|
|
/**
|
*
|
* @author STEPHANIE
|
*/
|
@Getter @Setter
|
@MappedSuperclass
|
public class Decryptage {
|
@Transient
|
protected String keyToDecrypt;
|
|
@Transient
|
protected String keyConfirmation;
|
|
@Transient
|
protected boolean protege;
|
}
|