Interface CertificateCredentials
-
- All Implemented Interfaces:
-
org.gradle.api.credentials.Credentials
public interface CertificateCredentials implements CredentialsCredentials that identify the client by means of a TLS certificate.
-
-
Method Summary
Modifier and Type Method Description abstract RegularFilePropertygetCertificateFile()Path to the certificate file (PEM format). abstract RegularFilePropertygetKeyFile()Path to the certificate private key file (PEM format). -
-
Method Detail
-
getCertificateFile
abstract RegularFileProperty getCertificateFile()
Path to the certificate file (PEM format).
-
getKeyFile
abstract RegularFileProperty getKeyFile()
Path to the certificate private key file (PEM format).
-
-
-
-