This is an automated email from the ASF dual-hosted git repository.
riemer pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/streampipes.git
The following commit(s) were added to refs/heads/dev by this push:
new 92db623862 refactor: remove UserService class and its associated
methods (#3626)
92db623862 is described below
commit 92db62386239f8b83bb9df1f83ac920f861ce7b5
Author: yanfeng1992 <[email protected]>
AuthorDate: Fri May 23 18:54:16 2025 +0800
refactor: remove UserService class and its associated methods (#3626)
Signed-off-by: huangyanfeng [email protected]
Signed-off-by: huangyanfeng [email protected]
---
.../user/management/service/UserService.java | 44 ----------------------
1 file changed, 44 deletions(-)
diff --git
a/streampipes-user-management/src/main/java/org/apache/streampipes/user/management/service/UserService.java
b/streampipes-user-management/src/main/java/org/apache/streampipes/user/management/service/UserService.java
deleted file mode 100644
index 0b30f5bd48..0000000000
---
a/streampipes-user-management/src/main/java/org/apache/streampipes/user/management/service/UserService.java
+++ /dev/null
@@ -1,44 +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.streampipes.user.management.service;
-
-import org.apache.streampipes.storage.couchdb.utils.Utils;
-
-import com.google.gson.JsonObject;
-import org.lightcouch.CouchDbClient;
-
-import java.util.List;
-
-public class UserService {
-
- private JsonObject user;
-
- public UserService(String email) throws IllegalArgumentException {
- CouchDbClient dbClient = Utils.getCouchDbUserClient();
- List<JsonObject> users =
dbClient.view("users/password").key(email).includeDocs(true).query(JsonObject.class);
- if (users.size() != 1) {
- throw new IllegalArgumentException("None or too many users with matching
username");
- }
- this.user = users.get(0);
-
- }
-
- public String getPassword() {
- return user.get("password").getAsString();
- }
-}