Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Open Subsurface Data Universe Software
Platform
Data Flow
Data Ingestion
Ingestion Workflow
Commits
c055b8f0
Commit
c055b8f0
authored
Aug 26, 2021
by
Aalekh Jain
Browse files
Added another method signature with `isSystemWorkflow` in `WorkflowEngineRequest.java`
parent
a51a52eb
Changes
1
Hide whitespace changes
Inline
Side-by-side
workflow-core/src/main/java/org/opengroup/osdu/workflow/model/WorkflowEngineRequest.java
View file @
c055b8f0
...
...
@@ -42,6 +42,10 @@ public class WorkflowEngineRequest {
this
(
null
,
null
,
workflowName
,
startTimeStamp
,
null
,
workflowEngineExecutionDate
,
false
,
false
);
}
public
WorkflowEngineRequest
(
String
workflowName
,
Long
startTimeStamp
,
String
workflowEngineExecutionDate
,
boolean
isSystemWorkflow
)
{
this
(
null
,
null
,
workflowName
,
startTimeStamp
,
null
,
workflowEngineExecutionDate
,
false
,
isSystemWorkflow
);
}
public
WorkflowEngineRequest
(
String
workflowName
)
{
this
(
null
,
null
,
workflowName
,
System
.
currentTimeMillis
(),
null
,
null
,
false
,
false
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment