in sonar-plugin-server/src/main/java/jetbrains/buildserver/sonarplugin/manager/ManageSQSActionController.java [60:75]
public ManageSQSActionController(@NotNull final WebControllerManager controllerManager,
@NotNull final SQSManager sqsManager,
@NotNull final ProjectManager projectManager,
@NotNull final SecurityContext securityContext,
@NotNull final SQSInfoFactory sqsInfoFactory,
@NotNull final ConfigActionFactory configActionFactory) {
super(controllerManager);
mySQSInfoFactory = sqsInfoFactory;
myConfigActionFactory = configActionFactory;
controllerManager.registerController("/admin/manageSonarServers.html", this);
registerAction(this);
mySqsManager = sqsManager;
myProjectManager = projectManager;
this.securityContext = securityContext;
}