Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 657D2200D63 for ; Thu, 21 Dec 2017 23:10:20 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 643E6160C2C; Thu, 21 Dec 2017 22:10:20 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id D4DC0160C12 for ; Thu, 21 Dec 2017 23:10:19 +0100 (CET) Received: (qmail 53392 invoked by uid 500); 21 Dec 2017 22:10:14 -0000 Mailing-List: contact dev-help@drill.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@drill.apache.org Delivered-To: mailing list dev@drill.apache.org Received: (qmail 52209 invoked by uid 99); 21 Dec 2017 22:10:13 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 21 Dec 2017 22:10:13 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id CF08EF17D8; Thu, 21 Dec 2017 22:10:12 +0000 (UTC) From: sohami To: dev@drill.apache.org Reply-To: dev@drill.apache.org References: In-Reply-To: Subject: [GitHub] drill pull request #1040: DRILL-5425: Support HTTP Kerberos auth using SPNEG... Content-Type: text/plain Message-Id: <20171221221012.CF08EF17D8@git1-us-west.apache.org> Date: Thu, 21 Dec 2017 22:10:12 +0000 (UTC) archived-at: Thu, 21 Dec 2017 22:10:20 -0000 Github user sohami commented on a diff in the pull request: https://github.com/apache/drill/pull/1040#discussion_r158120552 --- Diff: exec/java-exec/src/main/java/org/apache/drill/exec/server/rest/auth/SPNEGOSecurityHandler.java --- @@ -0,0 +1,37 @@ +/* + * 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.server.rest.auth; + +import org.apache.drill.common.exceptions.DrillException; +import org.apache.drill.exec.server.DrillbitContext; + +public class SPNEGOSecurityHandler extends DrillHttpConstraintSecurityHandler { --- End diff -- Renamed. ---