From b593e7f93388cde3c6f9947007bd94a4426746da Mon Sep 17 00:00:00 2001 From: Alex Shvid Date: Tue, 12 Nov 2013 22:48:07 -0800 Subject: [PATCH] DATACASS-34 --- gradle.properties | 2 +- .../repository/CassandraRepository.java | 29 +++++++++++++ .../data/cassandra/repository/Query.java | 42 +++++++++++++++++++ 3 files changed, 72 insertions(+), 1 deletion(-) create mode 100644 src/main/java/org/springframework/data/cassandra/repository/CassandraRepository.java create mode 100644 src/main/java/org/springframework/data/cassandra/repository/Query.java diff --git a/gradle.properties b/gradle.properties index 2bfbeeea7..883b974a6 100644 --- a/gradle.properties +++ b/gradle.properties @@ -8,7 +8,7 @@ slf4jVersion = 1.6.6 # Common libraries springVersion = 3.1.4.RELEASE -springDataVersion = 1.5.0.RELEASE +springDataVersion = 1.5.3.RELEASE jacksonVersion = 1.8.8 # Testing diff --git a/src/main/java/org/springframework/data/cassandra/repository/CassandraRepository.java b/src/main/java/org/springframework/data/cassandra/repository/CassandraRepository.java new file mode 100644 index 000000000..a2c245c6e --- /dev/null +++ b/src/main/java/org/springframework/data/cassandra/repository/CassandraRepository.java @@ -0,0 +1,29 @@ +/* + * Copyright 2011-2012 the original author or authors. + * + * Licensed 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.springframework.data.cassandra.repository; + +import java.io.Serializable; + +import org.springframework.data.repository.CrudRepository; + +/** + * Cassandra-specific extension of the {@link CrudRepository} interface. + * + * @author Alex Shvid + */ +public interface CassandraRepository extends CrudRepository { + +} diff --git a/src/main/java/org/springframework/data/cassandra/repository/Query.java b/src/main/java/org/springframework/data/cassandra/repository/Query.java new file mode 100644 index 000000000..4098ebbf0 --- /dev/null +++ b/src/main/java/org/springframework/data/cassandra/repository/Query.java @@ -0,0 +1,42 @@ +/* + * Copyright 2011-2013 the original author or authors. + * + * Licensed 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.springframework.data.cassandra.repository; + +import java.lang.annotation.Documented; +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +/** + * Annotation to declare finder queries directly on repository methods. + * + * @author Alex Shvid + */ + +@Retention(RetentionPolicy.RUNTIME) +@Target(ElementType.METHOD) +@Documented +public @interface Query { + + /** + * Takes a Cassandra CQL3 string to define the actual query to be executed. + * + * @return + */ + String value() default ""; + +}