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

io.mosip.authentication.entity.DataEncryptKeystore Maven / Gradle / Ivy

There is a newer version: 1.0.10-rc1
Show newest version
package io.mosip.authentication.entity;

import java.time.LocalDateTime;

import javax.persistence.Entity;
import javax.persistence.Id;

import lombok.Data;

@Entity
@Data
public class DataEncryptKeystore {

	@Id
	private Integer id;
	private String key;
	private String keyStatus;
	private String crBy;
	private LocalDateTime crDtimes;
	private String updBy;
	private LocalDateTime updDtimes;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy