public Set commandHandlerSet()

in src/main/java/com/awslabs/iot/client/applications/GreengrassModule.java [24:72]


    public Set<CommandHandler> commandHandlerSet(ListGroupsCommandHandler listGroupsCommandHandler,
                                                 ListGroupVersionsCommandHandlerWithGroupIdCompletion listGroupVersionsCommandHandlerWithGroupIdCompletion,
                                                 GetLatestGroupVersionCommandHandlerWithGroupIdCompletion getLatestGroupVersionCommandHandlerWithGroupIdCompletion,
                                                 ListDeploymentsCommandHandlerWithGroupIdCompletion listDeploymentsCommandHandlerWithGroupIdCompletion,
                                                 GetLatestDeploymentCommandHandlerWithGroupIdCompletion getLatestDeploymentCommandHandlerWithGroupIdCompletion,
                                                 GetDeploymentStatusCommandHandlerWithGroupIdAndDeploymentIdCompletion getDeploymentStatusCommandHandlerWithGroupIdAndDeploymentIdCompletion,
                                                 GetLatestDeploymentStatusCommandHandlerWithGroupIdCompletion getLatestDeploymentStatusCommandHandlerWithGroupIdCompletion,
                                                 GetLatestFunctionDefinitionVersionCommandHandlerWithGroupIdCompletion getLatestFunctionDefinitionVersionCommandHandlerWithGroupIdCompletion,
                                                 GetLatestCoreDefinitionVersionCommandHandlerWithGroupIdCompletion getLatestCoreDefinitionVersionCommandHandlerWithGroupIdCompletion,
                                                 GetLatestSubscriptionDefinitionVersionCommandHandlerWithGroupIdCompletion getLatestSubscriptionDefinitionVersionCommandHandlerWithGroupIdCompletion,
                                                 GetLatestDeviceDefinitionVersionCommandHandlerWithGroupIdCompletion getLatestDeviceDefinitionVersionCommandHandlerWithGroupIdCompletion,
                                                 GetLatestLoggerDefinitionVersionCommandHandlerWithGroupIdCompletion getLatestLoggerDefinitionVersionCommandHandlerWithGroupIdCompletion,
                                                 GetLatestResourceDefinitionVersionCommandHandlerWithGroupIdCompletion getLatestResourceDefinitionVersionCommandHandlerWithGroupIdCompletion,
                                                 GetLatestConnectorDefinitionVersionCommandHandlerWithGroupIdCompletion getLatestConnectorDefinitionVersionCommandHandlerWithGroupIdCompletion,
                                                 DeleteGroupCommandHandlerWithGroupIdCompletion deleteGroupCommandHandlerWithGroupIdCompletion,
                                                 DeleteAllGroupsCommandHandler deleteAllGroupsCommandHandler,
                                                 CleanupCommandHandler cleanupCommandHandler,
                                                 DeleteAllCoreDefinitionsCommandHandler deleteAllCoreDefinitionsCommandHandler,
                                                 DeleteAllFunctionDefinitionsCommandHandler deleteAllFunctionDefinitionsCommandHandler,
                                                 DeleteAllSubscriptionDefinitionsCommandHandler deleteAllSubscriptionDefinitionsCommandHandler,
                                                 DeleteAllDeviceDefinitionsCommandHandler deleteAllDeviceDefinitionsCommandHandler,
                                                 DeleteAllLoggerDefinitionsCommandHandler deleteAllLoggerDefinitionsCommandHandler,
                                                 DeleteAllConnectorDefinitionsCommandHandler deleteAllConnectorDefinitionsCommandHandler) {
        return HashSet.<CommandHandler>of(
                listGroupsCommandHandler,
                listGroupVersionsCommandHandlerWithGroupIdCompletion,
                getLatestGroupVersionCommandHandlerWithGroupIdCompletion,
                listDeploymentsCommandHandlerWithGroupIdCompletion,
                getLatestDeploymentCommandHandlerWithGroupIdCompletion,
                getDeploymentStatusCommandHandlerWithGroupIdAndDeploymentIdCompletion,
                getLatestDeploymentStatusCommandHandlerWithGroupIdCompletion,
                getLatestFunctionDefinitionVersionCommandHandlerWithGroupIdCompletion,
                getLatestCoreDefinitionVersionCommandHandlerWithGroupIdCompletion,
                getLatestSubscriptionDefinitionVersionCommandHandlerWithGroupIdCompletion,
                getLatestDeviceDefinitionVersionCommandHandlerWithGroupIdCompletion,
                getLatestLoggerDefinitionVersionCommandHandlerWithGroupIdCompletion,
                getLatestResourceDefinitionVersionCommandHandlerWithGroupIdCompletion,
                getLatestConnectorDefinitionVersionCommandHandlerWithGroupIdCompletion,
                deleteGroupCommandHandlerWithGroupIdCompletion,
                deleteAllGroupsCommandHandler,
                cleanupCommandHandler,
                deleteAllCoreDefinitionsCommandHandler,
                deleteAllFunctionDefinitionsCommandHandler,
                deleteAllSubscriptionDefinitionsCommandHandler,
                deleteAllDeviceDefinitionsCommandHandler,
                deleteAllLoggerDefinitionsCommandHandler,
                deleteAllConnectorDefinitionsCommandHandler)
                .toJavaSet();
    }