forked from Netflix/conductor
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #227 from orkes-io/workflow_upgrade
Upgrade api
- Loading branch information
Showing
5 changed files
with
95 additions
and
12 deletions.
There are no files selected for viewing
69 changes: 69 additions & 0 deletions
69
.../src/main/java/com/netflix/conductor/common/metadata/workflow/UpgradeWorkflowRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
/* | ||
* Copyright 2023 Netflix, Inc. | ||
* <p> | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* <p> | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* <p> | ||
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on | ||
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations under the License. | ||
*/ | ||
package com.netflix.conductor.common.metadata.workflow; | ||
|
||
import java.util.Map; | ||
|
||
import javax.validation.constraints.NotNull; | ||
|
||
import com.netflix.conductor.annotations.protogen.ProtoField; | ||
import com.netflix.conductor.annotations.protogen.ProtoMessage; | ||
|
||
@ProtoMessage | ||
public class UpgradeWorkflowRequest { | ||
|
||
public Map<String, Object> getTaskOutput() { | ||
return taskOutput; | ||
} | ||
|
||
public void setTaskOutput(Map<String, Object> taskOutput) { | ||
this.taskOutput = taskOutput; | ||
} | ||
|
||
public Map<String, Object> getWorkflowInput() { | ||
return workflowInput; | ||
} | ||
|
||
public void setWorkflowInput(Map<String, Object> workflowInput) { | ||
this.workflowInput = workflowInput; | ||
} | ||
|
||
@ProtoField(id = 4) | ||
private Map<String, Object> taskOutput; | ||
|
||
@ProtoField(id = 3) | ||
private Map<String, Object> workflowInput; | ||
|
||
@ProtoField(id = 2) | ||
private Integer version; | ||
|
||
@NotNull(message = "Workflow name cannot be null or empty") | ||
@ProtoField(id = 1) | ||
private String name; | ||
|
||
public String getName() { | ||
return name; | ||
} | ||
|
||
public void setName(String name) { | ||
this.name = name; | ||
} | ||
|
||
public Integer getVersion() { | ||
return version; | ||
} | ||
|
||
public void setVersion(Integer version) { | ||
this.version = version; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters