JAMES-2291 Introduce skeleton project for Cassandra mail repository
Project: http://git-wip-us.apache.org/repos/asf/james-project/repo Commit: http://git-wip-us.apache.org/repos/asf/james-project/commit/a7aad0be Tree: http://git-wip-us.apache.org/repos/asf/james-project/tree/a7aad0be Diff: http://git-wip-us.apache.org/repos/asf/james-project/diff/a7aad0be Branch: refs/heads/master Commit: a7aad0bee8cca3335bcd81d49d71f442cf498aa2 Parents: bc102e3 Author: Raphael Ouazana <[email protected]> Authored: Tue Jan 23 17:00:09 2018 +0100 Committer: benwa <[email protected]> Committed: Thu Jan 25 12:02:53 2018 +0700 ---------------------------------------------------------------------- .../mailrepository-cassandra/pom.xml | 92 ++++++++++++++++++++ .../cassandra/CassandraMailRepository.java | 75 ++++++++++++++++ .../cassandra/CassandraMailRepositoryTest.java | 41 +++++++++ server/pom.xml | 1 + 4 files changed, 209 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/james-project/blob/a7aad0be/server/mailrepository/mailrepository-cassandra/pom.xml ---------------------------------------------------------------------- diff --git a/server/mailrepository/mailrepository-cassandra/pom.xml b/server/mailrepository/mailrepository-cassandra/pom.xml new file mode 100644 index 0000000..9a6d5ac --- /dev/null +++ b/server/mailrepository/mailrepository-cassandra/pom.xml @@ -0,0 +1,92 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + 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. +--> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> + <modelVersion>4.0.0</modelVersion> + + <parent> + <groupId>org.apache.james</groupId> + <artifactId>james-server</artifactId> + <version>3.1.0-SNAPSHOT</version> + <relativePath>../../pom.xml</relativePath> + </parent> + + <artifactId>james-server-mailrepository-cassandra</artifactId> + <packaging>jar</packaging> + + <name>Apache James :: Server :: MailRepository :: Cassandra</name> + + <dependencies> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>james-server-core</artifactId> + </dependency> + <dependency> + <groupId>org.apache.james</groupId> + <artifactId>james-server-testing</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>james-server-mailrepository-api</artifactId> + </dependency> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>james-server-mailrepository-api</artifactId> + <type>test-jar</type> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.assertj</groupId> + <artifactId>assertj-core</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.junit.jupiter</groupId> + <artifactId>junit-jupiter-engine</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.junit.platform</groupId> + <artifactId>junit-platform-launcher</artifactId> + <scope>test</scope> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jar-plugin</artifactId> + <executions> + <execution> + <goals> + <goal>test-jar</goal> + </goals> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.apache.felix</groupId> + <artifactId>maven-bundle-plugin</artifactId> + <extensions>true</extensions> + </plugin> + </plugins> + </build> +</project> http://git-wip-us.apache.org/repos/asf/james-project/blob/a7aad0be/server/mailrepository/mailrepository-cassandra/src/main/java/org/apache/james/mailrepository/cassandra/CassandraMailRepository.java ---------------------------------------------------------------------- diff --git a/server/mailrepository/mailrepository-cassandra/src/main/java/org/apache/james/mailrepository/cassandra/CassandraMailRepository.java b/server/mailrepository/mailrepository-cassandra/src/main/java/org/apache/james/mailrepository/cassandra/CassandraMailRepository.java new file mode 100644 index 0000000..b1f171e --- /dev/null +++ b/server/mailrepository/mailrepository-cassandra/src/main/java/org/apache/james/mailrepository/cassandra/CassandraMailRepository.java @@ -0,0 +1,75 @@ +/**************************************************************** + * 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.mailrepository.cassandra; + +import java.util.Collection; +import java.util.Iterator; + +import javax.mail.MessagingException; + +import org.apache.james.mailrepository.api.MailRepository; +import org.apache.mailet.Mail; + +public class CassandraMailRepository implements MailRepository { + + public CassandraMailRepository() { + } + + @Override + public void store(Mail mail) { + } + + @Override + public Iterator<String> list() { + return null; + } + + @Override + public Mail retrieve(String key) { + return null; + } + + @Override + public void remove(Mail mail) { + } + + @Override + public void remove(Collection<Mail> toRemove) { + } + + @Override + public void remove(String key) { + } + + @Override + public long size() throws MessagingException { + return 0; + } + + @Override + public boolean lock(String key) { + return false; + } + + @Override + public boolean unlock(String key) { + return false; + } +} http://git-wip-us.apache.org/repos/asf/james-project/blob/a7aad0be/server/mailrepository/mailrepository-cassandra/src/test/java/org/apache/james/mailrepository/cassandra/CassandraMailRepositoryTest.java ---------------------------------------------------------------------- diff --git a/server/mailrepository/mailrepository-cassandra/src/test/java/org/apache/james/mailrepository/cassandra/CassandraMailRepositoryTest.java b/server/mailrepository/mailrepository-cassandra/src/test/java/org/apache/james/mailrepository/cassandra/CassandraMailRepositoryTest.java new file mode 100644 index 0000000..302c136 --- /dev/null +++ b/server/mailrepository/mailrepository-cassandra/src/test/java/org/apache/james/mailrepository/cassandra/CassandraMailRepositoryTest.java @@ -0,0 +1,41 @@ +/**************************************************************** + * 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.mailrepository.cassandra; + +import org.apache.james.mailrepository.MailRepositoryContract; +import org.apache.james.mailrepository.api.MailRepository; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Disabled; + +@Disabled("Skeleton implementation") +class CassandraMailRepositoryTest implements MailRepositoryContract { + + private CassandraMailRepository cassandraMailRepository; + + @BeforeEach + void setup() { + cassandraMailRepository = new CassandraMailRepository(); + } + + @Override + public MailRepository retrieveRepository() { + return cassandraMailRepository; + } +} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/james-project/blob/a7aad0be/server/pom.xml ---------------------------------------------------------------------- diff --git a/server/pom.xml b/server/pom.xml index a1cc8ea..56545e3 100644 --- a/server/pom.xml +++ b/server/pom.xml @@ -84,6 +84,7 @@ <module>mailrepository/mailrepository-api</module> <module>mailrepository/mailrepository-memory</module> + <module>mailrepository/mailrepository-cassandra</module> <module>protocols/fetchmail</module> <module>protocols/jmap</module> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
