Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright DataStax, Inc.
*
* Licensed 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 com.datastax.oss.driver.internal.mapper;
import com.datastax.oss.driver.api.core.CqlIdentifier;
import com.datastax.oss.driver.api.core.config.DriverExecutionProfile;
import java.util.Objects;
public class DaoCacheKey {
private final CqlIdentifier keyspaceId;
private final CqlIdentifier tableId;
private final String executionProfileName;
private final DriverExecutionProfile executionProfile;
public DaoCacheKey(
CqlIdentifier keyspaceId,
CqlIdentifier tableId,
String executionProfileName,
DriverExecutionProfile executionProfile) {
this.keyspaceId = keyspaceId;
this.tableId = tableId;
this.executionProfileName = executionProfileName;
this.executionProfile = executionProfile;
}
public DaoCacheKey(
CqlIdentifier keyspaceId,
String tableName,
String executionProfileName,
DriverExecutionProfile executionProfile) {
this(keyspaceId, toId(tableName), executionProfileName, executionProfile);
}
public DaoCacheKey(
String keyspaceName,
CqlIdentifier tableId,
String executionProfileName,
DriverExecutionProfile executionProfile) {
this(toId(keyspaceName), tableId, executionProfileName, executionProfile);
}
public DaoCacheKey(
String keyspaceName,
String tableName,
String executionProfileName,
DriverExecutionProfile executionProfile) {
this(toId(keyspaceName), toId(tableName), executionProfileName, executionProfile);
}
private static CqlIdentifier toId(String name) {
return name == null ? null : CqlIdentifier.fromCql(name);
}
public CqlIdentifier getKeyspaceId() {
return keyspaceId;
}
public CqlIdentifier getTableId() {
return tableId;
}
public String getExecutionProfileName() {
return executionProfileName;
}
public DriverExecutionProfile getExecutionProfile() {
return executionProfile;
}
@Override
public boolean equals(Object other) {
if (other == this) {
return true;
} else if (other instanceof DaoCacheKey) {
DaoCacheKey that = (DaoCacheKey) other;
return Objects.equals(this.keyspaceId, that.keyspaceId)
&& Objects.equals(this.tableId, that.tableId)
&& Objects.equals(this.executionProfileName, that.executionProfileName)
&& Objects.equals(this.executionProfile, that.executionProfile);
} else {
return false;
}
}
@Override
public int hashCode() {
return Objects.hash(keyspaceId, tableId, executionProfileName, executionProfile);
}
}