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 <[email protected]> Authored: Tue Apr 5 18:27:09 2016 +0700 Committer: Benoit Tellier <[email protected]> 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: [email protected] For additional commands, e-mail: [email protected]
