cassandra-analytics-sidecar-client/src/main/java/org/apache/cassandra/spark/validation/TrustStoreValidation.java [54:63]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected TrustStoreValidation(boolean configured,
                                   String type,
                                   char[] password,
                                   Supplier<InputStream> stream)
    {
        this.configured = configured;
        this.type = type;
        this.password = password;
        this.stream = stream;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



cassandra-analytics-sidecar-client/src/main/java/org/apache/cassandra/spark/validation/KeyStoreValidation.java [58:67]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected KeyStoreValidation(boolean configured,
                                 String type,
                                 char[] password,
                                 Supplier<InputStream> stream)
    {
        this.configured = configured;
        this.type = type;
        this.password = password;
        this.stream = stream;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



