Interface PemTrustManagerProviderCfgClient

    • Method Detail

      • getExcludedFilenamePattern

        SortedSet<ValueOrExpression<String>> getExcludedFilenamePattern()
        Gets the "excluded-filename-pattern" property.

        The set of file name patterns identifying files to be excluded from the Pem Trust Manager Provider.

        Hidden files will always be excluded. File name patterns use the "glob" syntax defined by the Java "java.nio.file.FileSystem.getPathMatcher" method.

        Default values: .*, *.bak, *.tmp, *.md

        Returns:
        Returns the values of the "excluded-filename-pattern" property.
      • setExcludedFilenamePattern

        void setExcludedFilenamePattern​(Collection<ValueOrExpression<String>> values)
                                 throws PropertyException
        Sets the "excluded-filename-pattern" property.

        The set of file name patterns identifying files to be excluded from the Pem Trust Manager Provider.

        Hidden files will always be excluded. File name patterns use the "glob" syntax defined by the Java "java.nio.file.FileSystem.getPathMatcher" method.

        Parameters:
        values - The values of the "excluded-filename-pattern" property.
        Throws:
        PropertyException - If one or more of the new values are invalid.
      • getPemDirectory

        @MandatoryProperty
        ValueOrExpression<String> getPemDirectory()
        Gets the "pem-directory" property.

        Specifies the path to a directory containing all the certificates to trust. It can be an absolute path or a path that is relative to the OpenDJ instance root. The same directory may also be used to for a PEM key manager provider.

        Returns:
        Returns the value of the "pem-directory" property.
      • setPemDirectory

        @MandatoryProperty
        void setPemDirectory​(ValueOrExpression<String> value)
                      throws PropertyException
        Sets the "pem-directory" property.

        Specifies the path to a directory containing all the certificates to trust. It can be an absolute path or a path that is relative to the OpenDJ instance root. The same directory may also be used to for a PEM key manager provider.

        Parameters:
        value - The value of the "pem-directory" property.
        Throws:
        PropertyException - If the new value is invalid.