4445464748495051
@OneToMany(mappedBy = "issuer") Set<UpdateLog> updateLogs = new HashSet<UpdateLog>(); public CRLIssuer() { GUIDGenerator guid = new GUIDGenerator(true); this.id = guid.getUniqueId(); }
3738394041424344
@ManyToOne @JoinColumn(name = "issuer_id") private CRLIssuer issuer; public UpdateLog() { GUIDGenerator guid = new GUIDGenerator(true); this.id = guid.getUniqueId(); }