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

io.mosip.pms.common.entity.MISPLicenseKey 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;

@Data
@AllArgsConstructor
@NoArgsConstructor
@Embeddable
public class MISPLicenseKey implements Serializable{
	
	private static final long serialVersionUID = -1848346550159175040L;

	@NotNull
	@Column(insertable= false, updatable = false)
	private String misp_id;	
	
	@NotNull
	private String license_key;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy