From 0c955954d313c3931b1c0cfd16d7425c5f10d447 Mon Sep 17 00:00:00 2001 From: Renato Cavalcanti Date: Wed, 6 Mar 2024 15:34:36 +0100 Subject: [PATCH] chore: update javadoc to reflect implementation (#2053) * chore: update javadoc to reflect implementation * fixed typo Co-authored-by: Peter Vlugter <59895+pvlugter@users.noreply.github.com> --------- Co-authored-by: Peter Vlugter <59895+pvlugter@users.noreply.github.com> --- .../src/main/java/kalix/javasdk/annotations/TypeName.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sdk/java-sdk-spring/src/main/java/kalix/javasdk/annotations/TypeName.java b/sdk/java-sdk-spring/src/main/java/kalix/javasdk/annotations/TypeName.java index ddbd69f62d..b9a36ac3cd 100644 --- a/sdk/java-sdk-spring/src/main/java/kalix/javasdk/annotations/TypeName.java +++ b/sdk/java-sdk-spring/src/main/java/kalix/javasdk/annotations/TypeName.java @@ -22,10 +22,10 @@ import java.lang.annotation.Target; /** - * Annotation to assign a logical type name to persisted events. + * Annotation to assign a logical type name to events. * * Kalix needs to identify each event in order to deliver them to the right event handlers. - * If a logical type name isn't specified, Kalix will use the non-qualified class name. + * If a logical type name isn't specified, Kalix will use the fully qualified class name. * * Once an event is persisted in Kalix, you won't be able to rename your class if no logical type name * has been specified, as Kalix won't be able to recognize previously persisted events. @@ -37,7 +37,7 @@ public @interface TypeName { /** Logical type name for the annotated type. - * If missing (or defined as Empty String), the non-qualified class name will be used. + * If missing (or defined as Empty String), the fully qualified class name will be used. */ String value() default ""; }