AccessControlContext.java
/*
* 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.facebook.presto.spi.security;
import com.facebook.presto.common.RuntimeStats;
import com.facebook.presto.common.resourceGroups.QueryType;
import com.facebook.presto.spi.QueryId;
import com.facebook.presto.spi.WarningCollector;
import java.util.Objects;
import java.util.Optional;
import java.util.Set;
import static java.util.Objects.requireNonNull;
public class AccessControlContext
{
private final QueryId queryId;
private final Optional<String> clientInfo;
private final Set<String> clientTags;
private final Optional<String> source;
private final WarningCollector warningCollector;
private final RuntimeStats runtimeStats;
private final Optional<QueryType> queryType;
private final Optional<String> catalog;
private final Optional<String> schema;
public AccessControlContext(
QueryId queryId,
Optional<String> clientInfo,
Set<String> clientTags,
Optional<String> source,
WarningCollector warningCollector,
RuntimeStats runtimeStats,
Optional<QueryType> queryType,
Optional<String> catalog,
Optional<String> schema)
{
this.queryId = requireNonNull(queryId, "queryId is null");
this.clientInfo = requireNonNull(clientInfo, "clientInfo is null");
this.clientTags = requireNonNull(clientTags, "clientTags is null");
this.source = requireNonNull(source, "source is null");
this.warningCollector = requireNonNull(warningCollector, "warningCollector is null");
this.runtimeStats = requireNonNull(runtimeStats, "runtimeStats is null");
this.queryType = requireNonNull(queryType, "queryType is null");
this.catalog = requireNonNull(catalog, "catalog is null");
this.schema = requireNonNull(schema, "schema is null");
}
public QueryId getQueryId()
{
return queryId;
}
public Optional<String> getClientInfo()
{
return clientInfo;
}
public Set<String> getClientTags()
{
return clientTags;
}
public Optional<String> getSource()
{
return source;
}
public WarningCollector getWarningCollector()
{
return warningCollector;
}
public RuntimeStats getRuntimeStats()
{
return runtimeStats;
}
public Optional<QueryType> getQueryType()
{
return queryType;
}
public Optional<String> getCatalog()
{
return catalog;
}
public Optional<String> getSchema()
{
return schema;
}
@Override
public int hashCode()
{
return Objects.hash(queryId, clientInfo, clientTags, source, queryType, catalog, schema);
}
@Override
public boolean equals(Object obj)
{
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
AccessControlContext other = (AccessControlContext) obj;
return Objects.equals(this.queryId, other.queryId) &&
Objects.equals(this.clientInfo, other.clientInfo) &&
Objects.equals(this.clientTags, other.clientTags) &&
Objects.equals(this.source, other.source) &&
Objects.equals(this.queryType, other.queryType) &&
Objects.equals(this.catalog, other.catalog) &&
Objects.equals(this.schema, other.schema);
}
}