Skip to content

Commit 0c95595

Browse files
octonatopvlugter
andauthored
chore: update javadoc to reflect implementation (#2053)
* chore: update javadoc to reflect implementation * fixed typo Co-authored-by: Peter Vlugter <[email protected]> --------- Co-authored-by: Peter Vlugter <[email protected]>
1 parent 02841bc commit 0c95595

File tree

1 file changed

+3
-3
lines changed
  • sdk/java-sdk-spring/src/main/java/kalix/javasdk/annotations

1 file changed

+3
-3
lines changed

sdk/java-sdk-spring/src/main/java/kalix/javasdk/annotations/TypeName.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@
2222
import java.lang.annotation.Target;
2323

2424
/**
25-
* Annotation to assign a logical type name to persisted events.
25+
* Annotation to assign a logical type name to events.
2626
*
2727
* Kalix needs to identify each event in order to deliver them to the right event handlers.
28-
* If a logical type name isn't specified, Kalix will use the non-qualified class name.
28+
* If a logical type name isn't specified, Kalix will use the fully qualified class name.
2929
*
3030
* Once an event is persisted in Kalix, you won't be able to rename your class if no logical type name
3131
* has been specified, as Kalix won't be able to recognize previously persisted events.
@@ -37,7 +37,7 @@
3737
public @interface TypeName {
3838

3939
/** Logical type name for the annotated type.
40-
* If missing (or defined as Empty String), the non-qualified class name will be used.
40+
* If missing (or defined as Empty String), the fully qualified class name will be used.
4141
*/
4242
String value() default "";
4343
}

0 commit comments

Comments
 (0)