Class SecureRequestCustomizer

    • Field Detail

      • JAVAX_SERVLET_REQUEST_X_509_CERTIFICATE

        public static final java.lang.String JAVAX_SERVLET_REQUEST_X_509_CERTIFICATE
        Deprecated.
        See Also:
        Constant Field Values
      • JAVAX_SERVLET_REQUEST_CIPHER_SUITE

        public static final java.lang.String JAVAX_SERVLET_REQUEST_CIPHER_SUITE
        Deprecated.
        See Also:
        Constant Field Values
      • JAVAX_SERVLET_REQUEST_KEY_SIZE

        public static final java.lang.String JAVAX_SERVLET_REQUEST_KEY_SIZE
        Deprecated.
        See Also:
        Constant Field Values
      • JAVAX_SERVLET_REQUEST_SSL_SESSION_ID

        public static final java.lang.String JAVAX_SERVLET_REQUEST_SSL_SESSION_ID
        Deprecated.
        See Also:
        Constant Field Values
    • Constructor Detail

      • SecureRequestCustomizer

        public SecureRequestCustomizer()
        Deprecated.
      • SecureRequestCustomizer

        public SecureRequestCustomizer​(@Name("sniHostCheck")
                                       boolean sniHostCheck)
        Deprecated.
      • SecureRequestCustomizer

        public SecureRequestCustomizer​(@Name("sniHostCheck")
                                       boolean sniHostCheck,
                                       @Name("stsMaxAgeSeconds")
                                       long stsMaxAgeSeconds,
                                       @Name("stsIncludeSubdomains")
                                       boolean stsIncludeSubdomains)
        Deprecated.
        Parameters:
        sniHostCheck - True if the SNI Host name must match.
        stsMaxAgeSeconds - The max age in seconds for a Strict-Transport-Security response header. If set less than zero then no header is sent.
        stsIncludeSubdomains - If true, a include subdomain property is sent with any Strict-Transport-Security header
      • SecureRequestCustomizer

        public SecureRequestCustomizer​(@Name("sniRequired")
                                       boolean sniRequired,
                                       @Name("sniHostCheck")
                                       boolean sniHostCheck,
                                       @Name("stsMaxAgeSeconds")
                                       long stsMaxAgeSeconds,
                                       @Name("stsIncludeSubdomains")
                                       boolean stsIncludeSubdomains)
        Deprecated.
        Parameters:
        sniRequired - True if a SNI certificate is required.
        sniHostCheck - True if the SNI Host name must match.
        stsMaxAgeSeconds - The max age in seconds for a Strict-Transport-Security response header. If set less than zero then no header is sent.
        stsIncludeSubdomains - If true, a include subdomain property is sent with any Strict-Transport-Security header
    • Method Detail

      • isSniHostCheck

        public boolean isSniHostCheck()
        Deprecated.
        Returns:
        True if the SNI Host name must match when there is an SNI certificate.
      • setSniHostCheck

        public void setSniHostCheck​(boolean sniHostCheck)
        Deprecated.
        Parameters:
        sniHostCheck - True if the SNI Host name must match when there is an SNI certificate.
      • setSniRequired

        public void setSniRequired​(boolean sniRequired)
        Deprecated.
        Parameters:
        sniRequired - True if SNI is required, else requests will be rejected with 400 response.
        See Also:
        SslContextFactory.Server.setSniRequired(boolean)
      • getStsMaxAge

        public long getStsMaxAge()
        Deprecated.
        Returns:
        The max age in seconds for a Strict-Transport-Security response header. If set less than zero then no header is sent.
      • setStsMaxAge

        public void setStsMaxAge​(long stsMaxAgeSeconds)
        Deprecated.
        Set the Strict-Transport-Security max age.
        Parameters:
        stsMaxAgeSeconds - The max age in seconds for a Strict-Transport-Security response header. If set less than zero then no header is sent.
      • setStsMaxAge

        public void setStsMaxAge​(long period,
                                 java.util.concurrent.TimeUnit units)
        Deprecated.
        Convenience method to call setStsMaxAge(long)
        Parameters:
        period - The period in units
        units - The TimeUnit of the period
      • isStsIncludeSubDomains

        public boolean isStsIncludeSubDomains()
        Deprecated.
        Returns:
        true if a include subdomain property is sent with any Strict-Transport-Security header
      • setStsIncludeSubDomains

        public void setStsIncludeSubDomains​(boolean stsIncludeSubDomains)
        Deprecated.
        Parameters:
        stsIncludeSubDomains - If true, a include subdomain property is sent with any Strict-Transport-Security header
      • setSslSessionAttribute

        public void setSslSessionAttribute​(java.lang.String attribute)
        Deprecated.
      • getSslSessionAttribute

        public java.lang.String getSslSessionAttribute()
        Deprecated.
      • toString

        public java.lang.String toString()
        Deprecated.
        Overrides:
        toString in class java.lang.Object