Package com.mendix.http
Interface ICertificateInfo
-
public interface ICertificateInfoA (private) certificate file with its password.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.io.FilegetCertificateFile()Gets the certificate file, or null when there is no certificate.java.lang.StringgetIdentifier()Gets an identifier for this certificate information.java.lang.StringgetPassword()Gets the password to the certificate file, or null when there is no certificate.
-
-
-
Method Detail
-
getIdentifier
java.lang.String getIdentifier()
Gets an identifier for this certificate information. This is either a hostname (for rest services) or a service name (for web services)- Returns:
- the certificate file
-
getCertificateFile
java.io.File getCertificateFile()
Gets the certificate file, or null when there is no certificate.- Returns:
- the certificate file
-
getPassword
java.lang.String getPassword()
Gets the password to the certificate file, or null when there is no certificate.- Returns:
- the password
-
-