File tree Expand file tree Collapse file tree 4 files changed +40
-0
lines changed
src/main/java/io/dapr/spring/workflows Expand file tree Collapse file tree 4 files changed +40
-0
lines changed Original file line number Diff line number Diff line change 1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <project xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" xmlns =" http://maven.apache.org/POM/4.0.0"
3+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" >
4+ <modelVersion >4.0.0</modelVersion >
5+
6+ <parent >
7+ <groupId >io.dapr.spring</groupId >
8+ <artifactId >dapr-spring-parent</artifactId >
9+ <version >0.13.0-SNAPSHOT</version >
10+ </parent >
11+
12+ <artifactId >dapr-spring-workflows</artifactId >
13+ <name >dapr-spring-workflow</name >
14+ <description >Dapr Spring Workflows</description >
15+ <packaging >jar</packaging >
16+
17+ </project >
Original file line number Diff line number Diff line change 1+ package io .dapr .spring .workflows ;
2+
3+ import java .lang .annotation .ElementType ;
4+ import java .lang .annotation .Retention ;
5+ import java .lang .annotation .RetentionPolicy ;
6+ import java .lang .annotation .Target ;
7+
8+ @ Retention (RetentionPolicy .RUNTIME )
9+ @ Target (ElementType .METHOD )
10+ public @interface Operation {
11+ String name () default "" ;
12+ }
Original file line number Diff line number Diff line change 1+ package io .dapr .spring .workflows ;
2+
3+ import java .lang .annotation .ElementType ;
4+ import java .lang .annotation .Retention ;
5+ import java .lang .annotation .RetentionPolicy ;
6+ import java .lang .annotation .Target ;
7+
8+ @ Retention (RetentionPolicy .RUNTIME )
9+ @ Target (ElementType .TYPE )
10+ public @interface Workflow {}
Original file line number Diff line number Diff line change 2020 <modules >
2121 <module >dapr-spring-data</module >
2222 <module >dapr-spring-messaging</module >
23+ <module >dapr-spring-workflows</module >
2324 <module >dapr-spring-boot-autoconfigure</module >
2425 <module >dapr-spring-boot-tests</module >
2526 <module >dapr-spring-boot-starters/dapr-spring-boot-starter</module >
You can’t perform that action at this time.
0 commit comments