You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@james.apache.org by bt...@apache.org on 2023/02/21 01:16:04 UTC

[james-project] 01/09: JAMES-3885 UsernameChangeTaskStep interface

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

btellier pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/james-project.git

commit b3fdcf3cdcc2e77359218c0ead483d3a12756feb
Author: Benoit Tellier <bt...@linagora.com>
AuthorDate: Thu Feb 16 15:30:23 2023 +0700

    JAMES-3885 UsernameChangeTaskStep interface
    
    Represant a step in the task to change of
    username (wedding, divorce)...
---
 .../james/user/api/UsernameChangeTaskStep.java     | 60 ++++++++++++++++++++++
 1 file changed, 60 insertions(+)

diff --git a/server/data/data-api/src/main/java/org/apache/james/user/api/UsernameChangeTaskStep.java b/server/data/data-api/src/main/java/org/apache/james/user/api/UsernameChangeTaskStep.java
new file mode 100644
index 0000000000..5460c55755
--- /dev/null
+++ b/server/data/data-api/src/main/java/org/apache/james/user/api/UsernameChangeTaskStep.java
@@ -0,0 +1,60 @@
+/****************************************************************
+ * 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.james.user.api;
+
+import java.util.Objects;
+
+import org.apache.james.core.Username;
+import org.reactivestreams.Publisher;
+
+public interface UsernameChangeTaskStep {
+    class StepName {
+        private final String value;
+
+        public StepName(String value) {
+            this.value = value;
+        }
+
+        public String asString() {
+            return value;
+        }
+
+        @Override
+        public final boolean equals(Object o) {
+            if (o instanceof StepName) {
+                StepName other = (StepName) o;
+
+                return Objects.equals(this.value, other.value);
+            }
+            return false;
+        }
+
+        @Override
+        public final int hashCode() {
+            return Objects.hash(value);
+        }
+    }
+
+    StepName name();
+
+    int priority();
+
+    Publisher<Void> changeUsername(Username oldUsername, Username newUsername);
+}


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@james.apache.org
For additional commands, e-mail: notifications-help@james.apache.org