@@ -33,15 +33,13 @@ public interface OrientDBTemplate extends DocumentTemplate {
3333
3434 /**
3535 * Executes a native OrientDB SQL query.
36- * <p>
3736 * This method allows running SQL queries with positional parameters.
3837 * Example usage:
3938 * <pre>
4039 * {@code
4140 * Stream<User> users = template.sql("SELECT FROM User WHERE age > ?", 30);
4241 * }
4342 * </pre>
44- * </p>
4543 *
4644 * @param <T> the expected result type
4745 * @param query the SQL query string
@@ -53,15 +51,13 @@ public interface OrientDBTemplate extends DocumentTemplate {
5351
5452 /**
5553 * Executes a native OrientDB SQL query with named parameters.
56- * <p>
5754 * Example usage:
5855 * <pre>
5956 * {@code
6057 * Map<String, Object> params = Map.of("age", 30);
6158 * Stream<User> users = template.sql("SELECT FROM User WHERE age > :age", params);
6259 * }
6360 * </pre>
64- * </p>
6561 *
6662 * @param <T> the expected result type
6763 * @param query the SQL query string
@@ -73,7 +69,6 @@ public interface OrientDBTemplate extends DocumentTemplate {
7369
7470 /**
7571 * Executes a live query in OrientDB.
76- * <p>
7772 * A live query listens for real-time changes in the database and triggers callbacks
7873 * for each event that occurs (insert, update, delete).
7974 * Example usage:
@@ -82,7 +77,6 @@ public interface OrientDBTemplate extends DocumentTemplate {
8277 * template.live(selectQuery, event -> System.out.println("Update: " + event));
8378 * }
8479 * </pre>
85- * </p>
8680 *
8781 * @param <T> the expected result type
8882 * @param query the query definition using {@link SelectQuery}
@@ -93,15 +87,13 @@ public interface OrientDBTemplate extends DocumentTemplate {
9387
9488 /**
9589 * Executes a live query in OrientDB using a SQL string.
96- * <p>
9790 * The query must include the "LIVE" keyword.
9891 * Example usage:
9992 * <pre>
10093 * {@code
10194 * template.live("LIVE SELECT FROM User", event -> System.out.println("User changed: " + event));
10295 * }
10396 * </pre>
104- * </p>
10597 *
10698 * @param <T> the expected result type
10799 * @param query the SQL query string containing the "LIVE" keyword
0 commit comments