Package jetbrains.buildServer.ssl
Class TeamCityTrustedSslCertificate
- java.lang.Object
-
- jetbrains.buildServer.ssl.TeamCityTrustedSslCertificate
-
- All Implemented Interfaces:
Comparable<TeamCityTrustedSslCertificate>
public class TeamCityTrustedSslCertificate extends Object implements Comparable<TeamCityTrustedSslCertificate>
In-memory representation of ssl certificate.- Since:
- 2018.1
- Author:
- Mikhail Khorkov
-
-
Constructor Summary
Constructors Constructor Description TeamCityTrustedSslCertificate(String name, byte[] pemData)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
compareTo(TeamCityTrustedSslCertificate other)
boolean
equals(Object o)
String
getName()
byte[]
getPemData()
int
hashCode()
String
toString()
-
-
-
Constructor Detail
-
TeamCityTrustedSslCertificate
public TeamCityTrustedSslCertificate(@NotNull String name, @NotNull byte[] pemData)
-
-
Method Detail
-
getName
@NotNull public String getName()
-
getPemData
@NotNull public byte[] getPemData()
-
compareTo
public int compareTo(@NotNull TeamCityTrustedSslCertificate other)
- Specified by:
compareTo
in interfaceComparable<TeamCityTrustedSslCertificate>
-
-