mirror of https://github.com/dapr/java-sdk.git
Add ElementType.Type to ActorType (#812)
Signed-off-by: LionTao <taojiachun980831@163.com> Signed-off-by: LionTao <taojiachun980831@163.com> Co-authored-by: Mukundan Sundararajan <65565396+mukundansundar@users.noreply.github.com> Co-authored-by: Artur Souza <artursouza.ms@outlook.com>
This commit is contained in:
parent
beafb5a5b3
commit
bd6e91b871
|
@ -23,7 +23,7 @@ import java.lang.annotation.Target;
|
|||
* Annotation to define Actor class.
|
||||
*/
|
||||
@Documented
|
||||
@Target(ElementType.TYPE_USE)
|
||||
@Target({ElementType.TYPE_USE, ElementType.TYPE})
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
public @interface ActorType {
|
||||
|
||||
|
|
Loading…
Reference in New Issue