You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: foundation/foundation-mda/src/main/java/com/boozallen/aiops/mda/generator/PipelineMessagingResourcesGenerator.java
+4-4
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@
23
23
* Generates configuration code with no model interaction. This is often useful for
24
24
* configuration files that must exist in some form or similar constructs.
Copy file name to clipboardexpand all lines: foundation/foundation-mda/src/main/java/com/boozallen/aiops/mda/generator/TargetedPipelineJavaGenerator.java
+12-4
Original file line number
Diff line number
Diff line change
@@ -43,6 +43,9 @@ public class TargetedPipelineJavaGenerator extends AbstractJavaGenerator {
Copy file name to clipboardexpand all lines: foundation/foundation-mda/src/main/java/com/boozallen/aiops/mda/metamodel/element/BasePipelineDecorator.java
+16-11
Original file line number
Diff line number
Diff line change
@@ -158,17 +158,13 @@ public String getCapitalizedName() {
158
158
}
159
159
160
160
161
-
publicbooleanhasMessaging() {
162
-
for (Stepstep : getSteps()) {
163
-
if (step.getInbound() != null) {
164
-
if ("messaging".equals(step.getInbound().getType())) {
165
-
returntrue;
166
-
}
167
-
}
168
-
if (step.getOutbound() != null) {
169
-
if ("messaging".equals(step.getOutbound().getType())) {
170
-
returntrue;
171
-
}
161
+
/**
162
+
* @return true if any step uses `messaging` or `multimessaging` type inbound/outbound
To connect to external messaging services, configure the following connectors in $pipelinesArtifactId/$pipelineArtifactId/src/main/resources/META-INF/microprofile-config.properties:
0 commit comments