Skip to content
Snippets Groups Projects
Commit 6d480c92 authored by Simon Spinner's avatar Simon Spinner
Browse files

Rename declareIncomingPort to declareInputPort.

parent f47e1e77
No related branches found
No related tags found
No related merge requests found
...@@ -304,7 +304,7 @@ public abstract class AgentScope extends Scope { ...@@ -304,7 +304,7 @@ public abstract class AgentScope extends Scope {
notification.create(); notification.create();
} }
protected void declareIncomingPort(String port) { protected void declareInputPort(String port) {
// Add a queue for delegation to other scopes. // Add a queue for delegation to other scopes.
String delegationQueueName = port + ".Delegation"; String delegationQueueName = port + ".Delegation";
getMessageBus().createQueue(delegationQueueName); getMessageBus().createQueue(delegationQueueName);
......
...@@ -336,8 +336,8 @@ public class ApplicationScope extends AgentScope { ...@@ -336,8 +336,8 @@ public class ApplicationScope extends AgentScope {
declareNotification(new NotificationDefinition(ComposedProvidingRequiringEntity.class, declareNotification(new NotificationDefinition(ComposedProvidingRequiringEntity.class,
getComposedProvidingRequiringEntityOutputPort())); getComposedProvidingRequiringEntityOutputPort()));
declareIncomingPort(getComposedProvidingRequiringEntityInputPort()); declareInputPort(getComposedProvidingRequiringEntityInputPort());
declareIncomingPort(getRuntimeEnvironmentInputPort()); declareInputPort(getRuntimeEnvironmentInputPort());
declareStatisticsPort(getApplicationStatisticsOutputPort()); declareStatisticsPort(getApplicationStatisticsOutputPort());
} }
......
...@@ -78,7 +78,7 @@ public class LogicalInfrastructureScope extends AgentScope { ...@@ -78,7 +78,7 @@ public class LogicalInfrastructureScope extends AgentScope {
} }
}); });
declareIncomingPort(getRuntimeEnvironmentInputPort()); declareInputPort(getRuntimeEnvironmentInputPort());
declareStatisticsPort(getRuntimeEnvironmentStatisticsOutputPort()); declareStatisticsPort(getRuntimeEnvironmentStatisticsOutputPort());
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment