This is an automated email from the ASF dual-hosted git repository.
ndipiazza pushed a commit to branch tika-grpc-3x-features
in repository https://gitbox.apache.org/repos/asf/tika.git
The following commit(s) were added to refs/heads/tika-grpc-3x-features by this
push:
new 5641a6006 TIKA-4272: fix an issue where the aad credential was not
serializing properly
5641a6006 is described below
commit 5641a600606442e1dbb72cefd5ac95d1af8d2f68
Author: Nicholas DiPiazza <[email protected]>
AuthorDate: Fri Nov 1 13:45:56 2024 -0500
TIKA-4272: fix an issue where the aad credential was not serializing
properly
---
.../Client2CertificateCredentialsConfig.java | 50 ----------------------
1 file changed, 50 deletions(-)
diff --git
a/tika-pipes/tika-fetchers/tika-fetcher-microsoft-graph/src/main/java/org/apache/tika/pipes/fetchers/microsoftgraph/config/Client2CertificateCredentialsConfig.java
b/tika-pipes/tika-fetchers/tika-fetcher-microsoft-graph/src/main/java/org/apache/tika/pipes/fetchers/microsoftgraph/config/Client2CertificateCredentialsConfig.java
deleted file mode 100644
index d9128373e..000000000
---
a/tika-pipes/tika-fetchers/tika-fetcher-microsoft-graph/src/main/java/org/apache/tika/pipes/fetchers/microsoftgraph/config/Client2CertificateCredentialsConfig.java
+++ /dev/null
@@ -1,50 +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.
- */
-package org.apache.tika.pipes.fetchers.microsoftgraph.config;
-
-public class Client2CertificateCredentialsConfig {
- private String tenantId;
- private String clientId;
- private String clientSecret;
-
- public String getTenantId() {
- return tenantId;
- }
-
- public Client2CertificateCredentialsConfig setTenantId(String tenantId) {
- this.tenantId = tenantId;
- return this;
- }
-
- public String getClientId() {
- return clientId;
- }
-
- public Client2CertificateCredentialsConfig setClientId(String clientId) {
- this.clientId = clientId;
- return this;
- }
-
- public String getClientSecret() {
- return clientSecret;
- }
-
- public Client2CertificateCredentialsConfig setClientSecret(String
clientSecret) {
- this.clientSecret = clientSecret;
- return this;
- }
-}