Skip to content

Commit

Permalink
SHIBUI-2273
Browse files Browse the repository at this point in the history
Fixing postgres lob issue
  • Loading branch information
chasegawa committed Jul 7, 2022
1 parent a4b03c6 commit de36cac
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package edu.internet2.tier.shibboleth.admin.ui.domain;

import lombok.EqualsAndHashCode;
import org.hibernate.annotations.Type;
import org.hibernate.envers.Audited;

import javax.annotation.Nullable;
Expand All @@ -14,6 +15,7 @@
public class X509Certificate extends AbstractXMLObject implements org.opensaml.xmlsec.signature.X509Certificate {
@Column(name = "x509CertificateValue")
@Lob
@Type(type = "org.hibernate.type.TextType")
private String value;

@Nullable
Expand All @@ -26,4 +28,4 @@ public String getValue() {
public void setValue(@Nullable String value) {
this.value = value;
}
}
}

0 comments on commit de36cac

Please sign in to comment.