You are viewing a plain text version of this content. The canonical link for it is here.
Posted to server-dev@james.apache.org by bt...@apache.org on 2016/04/22 10:33:15 UTC

[07/13] james-project git commit: JAMES-1717 Memory implementation for vacation storage

JAMES-1717 Memory implementation for vacation storage


Project: http://git-wip-us.apache.org/repos/asf/james-project/repo
Commit: http://git-wip-us.apache.org/repos/asf/james-project/commit/305dc663
Tree: http://git-wip-us.apache.org/repos/asf/james-project/tree/305dc663
Diff: http://git-wip-us.apache.org/repos/asf/james-project/diff/305dc663

Branch: refs/heads/master
Commit: 305dc66378a5e8ccb7973588789196b2ef97cfb4
Parents: 30e7a47
Author: Benoit Tellier <bt...@linagora.com>
Authored: Tue Apr 5 18:27:09 2016 +0700
Committer: Benoit Tellier <bt...@linagora.com>
Committed: Fri Apr 22 15:29:03 2016 +0700

----------------------------------------------------------------------
 .../vacation/MemoryVacationRepository.java      | 56 ++++++++++++++++++++
 .../vacation/MemoryVacationRepositoryTest.java  | 31 +++++++++++
 2 files changed, 87 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/james-project/blob/305dc663/server/data/data-jmap/src/main/java/org/apache/james/jmap/memory/vacation/MemoryVacationRepository.java
----------------------------------------------------------------------
diff --git a/server/data/data-jmap/src/main/java/org/apache/james/jmap/memory/vacation/MemoryVacationRepository.java b/server/data/data-jmap/src/main/java/org/apache/james/jmap/memory/vacation/MemoryVacationRepository.java
new file mode 100644
index 0000000..d5a1fc0
--- /dev/null
+++ b/server/data/data-jmap/src/main/java/org/apache/james/jmap/memory/vacation/MemoryVacationRepository.java
@@ -0,0 +1,56 @@
+/****************************************************************
+ * 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.jmap.memory.vacation;
+
+import java.util.HashMap;
+import java.util.Map;
+import java.util.concurrent.CompletableFuture;
+
+import javax.inject.Singleton;
+
+import org.apache.james.jmap.api.vacation.AccountId;
+import org.apache.james.jmap.api.vacation.Vacation;
+import org.apache.james.jmap.api.vacation.VacationRepository;
+
+import com.google.common.base.Preconditions;
+
+@Singleton
+public class MemoryVacationRepository implements VacationRepository {
+
+    private final Map<AccountId, Vacation> vacationMap;
+
+    public MemoryVacationRepository() {
+        this.vacationMap = new HashMap<>();
+    }
+
+    @Override
+    public CompletableFuture<Vacation> retrieveVacation(AccountId accountId) {
+        Preconditions.checkNotNull(accountId);
+        return CompletableFuture.completedFuture(vacationMap.getOrDefault(accountId, DEFAULT_VACATION));
+    }
+
+    @Override
+    public CompletableFuture<Void> modifyVacation(AccountId accountId, Vacation vacation) {
+        Preconditions.checkNotNull(accountId);
+        Preconditions.checkNotNull(vacation);
+        vacationMap.put(accountId, vacation);
+        return CompletableFuture.completedFuture(null);
+    }
+}

http://git-wip-us.apache.org/repos/asf/james-project/blob/305dc663/server/data/data-jmap/src/test/java/org/apache/james/jmap/memory/vacation/MemoryVacationRepositoryTest.java
----------------------------------------------------------------------
diff --git a/server/data/data-jmap/src/test/java/org/apache/james/jmap/memory/vacation/MemoryVacationRepositoryTest.java b/server/data/data-jmap/src/test/java/org/apache/james/jmap/memory/vacation/MemoryVacationRepositoryTest.java
new file mode 100644
index 0000000..0ec2d99
--- /dev/null
+++ b/server/data/data-jmap/src/test/java/org/apache/james/jmap/memory/vacation/MemoryVacationRepositoryTest.java
@@ -0,0 +1,31 @@
+/****************************************************************
+ * 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.jmap.memory.vacation;
+
+import org.apache.james.jmap.api.vacation.AbstractVacationRepositoryTest;
+import org.apache.james.jmap.api.vacation.VacationRepository;
+
+public class MemoryVacationRepositoryTest extends AbstractVacationRepositoryTest {
+
+    @Override
+    protected VacationRepository createVacationRepository() {
+        return new MemoryVacationRepository();
+    }
+}


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