File tree Expand file tree Collapse file tree 4 files changed +0
-12
lines changed
api/src/main/java/io/serverlessworkflow/api/deserializers
diagram/src/main/java/io/serverlessworkflow/diagram Expand file tree Collapse file tree 4 files changed +0
-12
lines changed Original file line number Diff line number Diff line change 24
24
import io .serverlessworkflow .api .cron .Cron ;
25
25
import io .serverlessworkflow .api .interfaces .WorkflowPropertySource ;
26
26
import io .serverlessworkflow .api .schedule .Schedule ;
27
- import org .slf4j .Logger ;
28
- import org .slf4j .LoggerFactory ;
29
27
30
28
import java .io .IOException ;
31
29
32
30
public class ScheduleDeserializer extends StdDeserializer <Schedule > {
33
31
34
32
private static final long serialVersionUID = 510l ;
35
- private static Logger logger = LoggerFactory .getLogger (ScheduleDeserializer .class );
36
33
37
34
private WorkflowPropertySource context ;
38
35
Original file line number Diff line number Diff line change 24
24
import io .serverlessworkflow .api .interfaces .WorkflowPropertySource ;
25
25
import io .serverlessworkflow .api .schedule .Schedule ;
26
26
import io .serverlessworkflow .api .start .Start ;
27
- import org .slf4j .Logger ;
28
- import org .slf4j .LoggerFactory ;
29
27
30
28
import java .io .IOException ;
31
29
32
30
public class StartDefinitionDeserializer extends StdDeserializer <Start > {
33
31
34
32
private static final long serialVersionUID = 510l ;
35
- private static Logger logger = LoggerFactory .getLogger (StartDefinitionDeserializer .class );
36
33
37
34
private WorkflowPropertySource context ;
38
35
Original file line number Diff line number Diff line change 24
24
import io .serverlessworkflow .api .interfaces .WorkflowPropertySource ;
25
25
import io .serverlessworkflow .api .produce .ProduceEvent ;
26
26
import io .serverlessworkflow .api .transitions .Transition ;
27
- import org .slf4j .Logger ;
28
- import org .slf4j .LoggerFactory ;
29
27
30
28
import java .io .IOException ;
31
29
import java .util .ArrayList ;
34
32
public class TransitionDeserializer extends StdDeserializer <Transition > {
35
33
36
34
private static final long serialVersionUID = 510l ;
37
- private static Logger logger = LoggerFactory .getLogger (TransitionDeserializer .class );
38
35
39
36
private WorkflowPropertySource context ;
40
37
Original file line number Diff line number Diff line change 22
22
import net .sourceforge .plantuml .FileFormat ;
23
23
import net .sourceforge .plantuml .FileFormatOption ;
24
24
import net .sourceforge .plantuml .SourceStringReader ;
25
- import org .slf4j .Logger ;
26
- import org .slf4j .LoggerFactory ;
27
25
28
26
import java .io .ByteArrayOutputStream ;
29
27
import java .nio .charset .Charset ;
30
28
31
29
public class WorkflowDiagramImpl implements WorkflowDiagram {
32
30
33
- private static final Logger logger = LoggerFactory .getLogger (WorkflowDiagramImpl .class );
34
31
35
32
private String source ;
36
33
private Workflow workflow ;
You can’t perform that action at this time.
0 commit comments