blob: 571490cb7cd9a929381a3a5159036a251d8d1ad2 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.drill.exec.store.jdbc;
import java.util.Objects;
import com.fasterxml.jackson.annotation.JsonFilter;
import org.apache.drill.common.logical.StoragePluginConfig;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonTypeName;
@JsonTypeName(JdbcStorageConfig.NAME)
@JsonFilter("passwordFilter")
public class JdbcStorageConfig extends StoragePluginConfig {
public static final String NAME = "jdbc";
private final String driver;
private final String url;
private final String username;
private final String password;
private final boolean caseInsensitiveTableNames;
@JsonCreator
public JdbcStorageConfig(
@JsonProperty("driver") String driver,
@JsonProperty("url") String url,
@JsonProperty("username") String username,
@JsonProperty("password") String password,
@JsonProperty("caseInsensitiveTableNames") boolean caseInsensitiveTableNames) {
super();
this.driver = driver;
this.url = url;
this.username = username;
this.password = password;
this.caseInsensitiveTableNames = caseInsensitiveTableNames;
}
public String getDriver() {
return driver;
}
public String getUrl() {
return url;
}
public String getUsername() {
return username;
}
public String getPassword() {
return password;
}
@JsonProperty("caseInsensitiveTableNames")
public boolean areTableNamesCaseInsensitive() {
return caseInsensitiveTableNames;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((driver == null) ? 0 : driver.hashCode());
result = prime * result + ((password == null) ? 0 : password.hashCode());
result = prime * result + ((url == null) ? 0 : url.hashCode());
result = prime * result + ((username == null) ? 0 : username.hashCode());
result = prime * result + (caseInsensitiveTableNames ? 1231 : 1237);
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
} else if (obj == null || getClass() != obj.getClass()) {
return false;
}
JdbcStorageConfig conf = (JdbcStorageConfig) obj;
return caseInsensitiveTableNames == conf.caseInsensitiveTableNames
&& Objects.equals(driver, conf.driver)
&& Objects.equals(password, conf.password)
&& Objects.equals(url, conf.url)
&& Objects.equals(username, conf.username);
}
}