Skip to content
This repository was archived by the owner on Sep 16, 2024. It is now read-only.

Commit 887ed9a

Browse files
Dermot SmythDermot Smyth
authored andcommitted
Added temporal commands to command map builder
1 parent c0ec99a commit 887ed9a

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/main/java/com/marklogic/appdeployer/command/CommandMapBuilder.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@
2525
import com.marklogic.appdeployer.command.schemas.LoadSchemasCommand;
2626
import com.marklogic.appdeployer.command.security.*;
2727
import com.marklogic.appdeployer.command.tasks.DeployScheduledTasksCommand;
28+
import com.marklogic.appdeployer.command.temporal.DeployTemporalAxesCommand;
29+
import com.marklogic.appdeployer.command.temporal.DeployTemporalCollectionsCommand;
30+
import com.marklogic.appdeployer.command.temporal.DeployTemporalCollectionsLSQTCommand;
2831
import com.marklogic.appdeployer.command.triggers.DeployTriggersCommand;
2932
import com.marklogic.appdeployer.command.viewschemas.DeployViewSchemasCommand;
3033

@@ -142,6 +145,13 @@ public Map<String, List<Command>> buildCommandMap() {
142145
triggerCommands.add(new DeployTriggersCommand());
143146
map.put("mlTriggerCommands", triggerCommands);
144147

148+
// Temporal
149+
List<Command> temporalCommands = new ArrayList<>();
150+
temporalCommands.add(new DeployTemporalAxesCommand());
151+
temporalCommands.add(new DeployTemporalCollectionsCommand())
;
152+
temporalCommands.add(new DeployTemporalCollectionsLSQTCommand())
;
153+
map.put("mlTemporalCommands", temporalCommands);
154+
145155
// SQL Views
146156
List<Command> viewCommands = new ArrayList<Command>();
147157
viewCommands.add(new DeployViewSchemasCommand());

0 commit comments

Comments
 (0)