com.elevenware.quickpki.CertInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lib Show documentation
Show all versions of lib Show documentation
A simple, self-contained PKI for development and testing
The newest version!
package com.elevenware.quickpki;
import lombok.Builder;
import lombok.Data;
import java.time.Instant;
@Data
@Builder
public class CertInfo {
private SubjectName subjectName;
private Instant validFrom;
private Instant validUntil;
}