flink-connector-influxdb/src/main/java/org/apache/flink/streaming/connectors/influxdb/InfluxDBConfig.java [59:91]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public String getUrl() {
        return url;
    }

    public String getUsername() {
        return username;
    }

    public String getPassword() {
        return password;
    }

    public String getDatabase() {
        return database;
    }

    public int getBatchActions() {
        return batchActions;
    }

    public int getFlushDuration() {
        return flushDuration;
    }

    public TimeUnit getFlushDurationTimeUnit() {
        return flushDurationTimeUnit;
    }

    public boolean isEnableGzip() {
        return enableGzip;
    }

    public boolean isCreateDatabase() { return createDatabase; }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



flink-connector-influxdb/src/main/java/org/apache/flink/streaming/connectors/influxdb/InfluxDBConfig.java [241:273]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        public String getUrl() {
            return url;
        }

        public String getUsername() {
            return username;
        }

        public String getPassword() {
            return password;
        }

        public String getDatabase() {
            return database;
        }

        public int getBatchActions() {
            return batchActions;
        }

        public int getFlushDuration() {
            return flushDuration;
        }

        public TimeUnit getFlushDurationTimeUnit() {
            return flushDurationTimeUnit;
        }

        public boolean isEnableGzip() {
            return enableGzip;
        }

        public boolean isCreateDatabase() { return createDatabase; }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



