We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39ce68b commit 7044272Copy full SHA for 7044272
src/main/java/org/soujava/demos/arangodb/document/App.java
@@ -34,7 +34,15 @@ public static void main(String[] args) {
34
for (int index = 0; index < 5; index++) {
35
template.insert(List.of(AWSCloudProvider.of(faker), AzureCloudProvider.of(faker)));
36
}
37
+
38
+ System.out.println("The cloud providers here");
39
template.select(CloudProvider.class).stream().forEach(System.out::println);
40
41
+ System.out.println("The AWS cloud providers here");
42
+ template.select(AWSCloudProvider.class).stream().forEach(System.out::println);
43
44
+ System.out.println("The Azure cloud providers here");
45
+ template.select(AzureCloudProvider.class).stream().forEach(System.out::println);
46
47
48
0 commit comments