File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
sdk/java-sdk-spring/src/main/java/kalix/javasdk/annotations Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 2222import 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.
3737public @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}
You can’t perform that action at this time.
0 commit comments