DATACASS-34

This commit is contained in:
Alex Shvid
2013-11-12 22:48:07 -08:00
parent 32dea64519
commit b593e7f933
3 changed files with 72 additions and 1 deletions

View File

@@ -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

View File

@@ -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<T, ID extends Serializable> extends CrudRepository<T, ID> {
}

View File

@@ -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 "";
}