We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71e3a38 commit d8297b3Copy full SHA for d8297b3
jnosql-cassandra/src/main/java/org/eclipse/jnosql/databases/cassandra/mapping/CQL.java
@@ -21,17 +21,13 @@
21
22
/**
23
* Annotation used to define a dynamic CQL query method in {@link CassandraRepository}.
24
- * <p>
25
* Methods annotated with {@code @CQL} allow the execution of custom Cassandra Query Language (CQL) statements
26
* within repository interfaces.
27
- * </p>
28
29
* Example usage:
30
* <pre>{@code
31
* @CQL("SELECT * FROM users WHERE username = :username")
32
* List<User> findByUsername(@Param("username") String username);
33
* }</pre>
34
35
*/
36
@Retention(RetentionPolicy.RUNTIME)
37
@Target(ElementType.METHOD)
0 commit comments