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

io.mosip.pms.common.entity.MISPlKeyUniqueKeyEntity Maven / Gradle / Ivy

There is a newer version: 1.3.0-dp.1
Show newest version
package io.mosip.pms.common.entity;

import java.io.Serializable;

import javax.persistence.Column;
import javax.persistence.Embeddable;
import javax.validation.constraints.NotNull;

import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;

/**
 * 
 * @author Nagarjuna Kuchi 
* @version 1.0
* * Defines an object to hold the misp license unique key. */ @Data @NoArgsConstructor @AllArgsConstructor //@Entity @Embeddable public class MISPlKeyUniqueKeyEntity implements Serializable { private static final long serialVersionUID = -8541947597557590399L; @NotNull @Column(insertable= false, updatable = false) private String misp_id; @NotNull private String license_key; }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy