updated code
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
package net.gepafin.tendermanagement.entities;
|
||||
|
||||
import jakarta.persistence.Column;
|
||||
import jakarta.persistence.Entity;
|
||||
import jakarta.persistence.Table;
|
||||
import lombok.Data;
|
||||
|
||||
@Entity
|
||||
@Table(name = "SAML_RESPONSE_LOG")
|
||||
@Data
|
||||
public class SamlResponseLogEntity extends BaseEntity{
|
||||
|
||||
@Column(name = "REQUEST")
|
||||
private String request;
|
||||
|
||||
@Column(name = "RESPONSE")
|
||||
private String response;
|
||||
|
||||
@Column(name = "AUTHENTICATION_OBJECT")
|
||||
private String authenticationObject;
|
||||
|
||||
@Column(name = "EXCEPTION_OBJECT")
|
||||
private String exceptionObject;
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user