-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add Activity to the documentation cli options
- Loading branch information
Showing
3 changed files
with
49 additions
and
0 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
31 changes: 31 additions & 0 deletions
31
clusterless-main/src/main/java/clusterless/cls/command/show/ShowActivities.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,31 @@ | ||
/* | ||
* Copyright (c) 2023 Chris K Wensel <[email protected]>. All Rights Reserved. | ||
* | ||
* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this | ||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. | ||
*/ | ||
|
||
package clusterless.cls.command.show; | ||
|
||
import clusterless.cls.model.deploy.Activity; | ||
import org.jetbrains.annotations.NotNull; | ||
import picocli.CommandLine; | ||
|
||
import java.util.Collection; | ||
|
||
@CommandLine.Command( | ||
name = "activity", | ||
description = "Show available provider activities." | ||
) | ||
public class ShowActivities extends ShowComponents { | ||
@Override | ||
protected @NotNull String elementSubType() { | ||
return "Activities"; | ||
} | ||
|
||
@Override | ||
protected Collection<String> getNames() { | ||
return super.getNamesHaving(e -> Activity.class.isAssignableFrom(e.getValue())); | ||
} | ||
} |
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