This is an automated email from the ASF dual-hosted git repository.

colegreer pushed a commit to branch js-interceptors
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit e3c324ef6c3e5142b704b1fc2542e72ce8dca1fb
Author: Cole Greer <[email protected]>
AuthorDate: Fri Mar 20 14:55:22 2026 -0700

    Add request interceptors to JS, including basic auth as reference
---
 .../lib/driver/auth/authenticator.ts               | 34 ----------------------
 1 file changed, 34 deletions(-)

diff --git 
a/gremlin-javascript/src/main/javascript/gremlin-javascript/lib/driver/auth/authenticator.ts
 
b/gremlin-javascript/src/main/javascript/gremlin-javascript/lib/driver/auth/authenticator.ts
deleted file mode 100644
index fcffdbc479..0000000000
--- 
a/gremlin-javascript/src/main/javascript/gremlin-javascript/lib/driver/auth/authenticator.ts
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- *  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.
- */
-
-export type AuthenticatorOptions = {
-  username?: string;
-  password?: string;
-  mechanism?: any;
-};
-
-export default abstract class Authenticator {
-  constructor(protected readonly options: AuthenticatorOptions) {}
-
-  /**
-   * Evaluates the challenge from the server and returns appropriate response.
-   * @param {String} challenge Challenge string presented by the server.
-   */
-  abstract evaluateChallenge(challenge: string): any;
-}

Reply via email to