Skip to content

Commit d4afe40

Browse files
committed
Add JavaDoc documentation to public accessor methods
1 parent 883023c commit d4afe40

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/main/java/org/springframework/data/falkordb/core/FalkorDBTemplate.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -345,10 +345,20 @@ public <T> Optional<T> queryForObject(String cypher, Map<String, Object> paramet
345345
});
346346
}
347347

348+
/**
349+
* Returns the {@link FalkorDBEntityConverter} used by this template.
350+
*
351+
* @return the entity converter
352+
*/
348353
public FalkorDBEntityConverter getConverter() {
349354
return this.entityConverter;
350355
}
351356

357+
/**
358+
* Returns the {@link FalkorDBMappingContext} used by this template.
359+
*
360+
* @return the mapping context
361+
*/
352362
public FalkorDBMappingContext getMappingContext() {
353363
return this.mappingContext;
354364
}

0 commit comments

Comments
 (0)