chore: Remove obsolete model wip: Create first working test case for cert import wip: Generate basic certRequest from given cert files wip: Start work on being able to import certificates chore: Update gitignore
19 lines
415 B
Java
19 lines
415 B
Java
package de.mlessmann.certassist.openssl;
|
|
|
|
import lombok.Builder;
|
|
import lombok.Getter;
|
|
|
|
@Getter
|
|
@Builder
|
|
public class CertificateSubject {
|
|
|
|
private String commonName;
|
|
private String emailAddress;
|
|
private String organization;
|
|
private String organizationalUnit;
|
|
private String country;
|
|
private String state;
|
|
private String locality;
|
|
|
|
public static class CertificateSubjectBuilder {}
|
|
}
|