Skip to content

Commit

Permalink
SHIBUI-1262 [1307 WIP]
Browse files Browse the repository at this point in the history
  • Loading branch information
dima767 committed May 31, 2019
1 parent 15b2e07 commit aff8ccd
Show file tree
Hide file tree
Showing 4 changed files with 124 additions and 76 deletions.
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.envers.Audited;

import javax.annotation.Nullable;
import javax.persistence.Column;
Expand All @@ -9,6 +10,7 @@

@Entity
@EqualsAndHashCode(callSuper = true)
@Audited
public class X509Certificate extends AbstractXMLObject implements org.opensaml.xmlsec.signature.X509Certificate {
@Column(name = "x509CertificateValue")
@Lob
Expand Down
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.envers.Audited;
import org.opensaml.core.xml.XMLObject;
import org.opensaml.xmlsec.signature.X509CRL;
import org.opensaml.xmlsec.signature.X509Certificate;
Expand All @@ -23,6 +24,7 @@

@Entity
@EqualsAndHashCode(callSuper = true)
@Audited
public class X509Data extends AbstractXMLObject implements org.opensaml.xmlsec.signature.X509Data {
@OneToMany(cascade = CascadeType.ALL)
@OrderColumn
Expand Down
Loading

0 comments on commit aff8ccd

Please sign in to comment.