-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed workflow command and added support for workflow command in Sche…
…duler API
- Loading branch information
Showing
7 changed files
with
139 additions
and
71 deletions.
There are no files selected for viewing
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
25 changes: 25 additions & 0 deletions
25
src/main/java/com/qubole/qds/sdk/java/entities/CompositeScheduleCommand.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,25 @@ | ||
package com.qubole.qds.sdk.java.entities; | ||
|
||
import java.util.List; | ||
|
||
public class CompositeScheduleCommand { | ||
|
||
private List<ScheduleCommand> sub_commands; | ||
|
||
private CompositeScheduleCommand(List<ScheduleCommand> sub_commands){ | ||
this.sub_commands = sub_commands; | ||
} | ||
|
||
public static CompositeScheduleCommand getCompositeScheduleCommand(List<ScheduleCommand> sub_commands) | ||
{ | ||
return new CompositeScheduleCommand(sub_commands); | ||
} | ||
|
||
public List<ScheduleCommand> getSub_commands() { | ||
return sub_commands; | ||
} | ||
|
||
public void setSub_commands(List<ScheduleCommand> subcommands) { | ||
this.sub_commands = subcommands; | ||
} | ||
} |
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