Class SSLInfo

java.lang.Object
com.zeroc.Glacier2.SSLInfo
All Implemented Interfaces:
Serializable, Cloneable

public class SSLInfo extends Object implements Cloneable, Serializable
Information taken from an SSL connection used for permissions verification.
See Also:
  • Field Details

    • remoteHost

      public String remoteHost
      The remote host.
    • remotePort

      public int remotePort
      The remote port.
    • localHost

      public String localHost
      The router's host.
    • localPort

      public int localPort
      The router's port.
    • cipher

      public String cipher
      The negotiated cipher suite.
    • certs

      public String[] certs
      The certificate chain.
  • Constructor Details

    • SSLInfo

      public SSLInfo()
    • SSLInfo

      public SSLInfo(String remoteHost, int remotePort, String localHost, int localPort, String cipher, String[] certs)
  • Method Details