Uses of Class
org.springframework.cloud.dataflow.rest.resource.AppRegistrationResource
Packages that use AppRegistrationResource
Package
Description
Defines the operations of the Spring Cloud Data Flow REST Client.
Spring Cloud Data Flow REST HATEOAS Resource support.
Spring Cloud Data Flow Server configuration classes.
Spring Cloud Data Flow Server Controllers.
-
Uses of AppRegistrationResource in org.springframework.cloud.dataflow.rest.client
Methods in org.springframework.cloud.dataflow.rest.client that return AppRegistrationResourceModifier and TypeMethodDescriptionAppRegistryOperations.register(String name, ApplicationType type, String uri, String metadataUri, boolean force) Deprecated.AppRegistryOperations.register(String name, ApplicationType type, String version, String uri, String metadataUri, boolean force) Deprecated.AppRegistryTemplate.register(String name, ApplicationType type, String uri, String metadataUri, boolean force) AppRegistryTemplate.register(String name, ApplicationType type, String version, String uri, String metadataUri, boolean force) Methods in org.springframework.cloud.dataflow.rest.client that return types with arguments of type AppRegistrationResourceModifier and TypeMethodDescriptionorg.springframework.hateoas.PagedModel<AppRegistrationResource>AppRegistryOperations.importFromResource(String uri, boolean force) Register all applications listed in a properties file.org.springframework.hateoas.PagedModel<AppRegistrationResource>AppRegistryTemplate.importFromResource(String uri, boolean force) org.springframework.hateoas.PagedModel<AppRegistrationResource>AppRegistryOperations.list()Return a list of all application registrations.org.springframework.hateoas.PagedModel<AppRegistrationResource>AppRegistryOperations.list(ApplicationType type) Return a list of all application registrations for the givenApplicationType.org.springframework.hateoas.PagedModel<AppRegistrationResource>AppRegistryTemplate.list()org.springframework.hateoas.PagedModel<AppRegistrationResource>AppRegistryTemplate.list(ApplicationType type) org.springframework.hateoas.PagedModel<AppRegistrationResource>AppRegistryOperations.registerAll(Properties apps, boolean force) Register all applications provided as key/value pairs.org.springframework.hateoas.PagedModel<AppRegistrationResource>AppRegistryTemplate.registerAll(Properties apps, boolean force) -
Uses of AppRegistrationResource in org.springframework.cloud.dataflow.rest.resource
Subclasses of AppRegistrationResource in org.springframework.cloud.dataflow.rest.resourceModifier and TypeClassDescriptionclassExtension ofAppRegistrationResourcethat contains application options and other detailed application information.Constructors in org.springframework.cloud.dataflow.rest.resource with parameters of type AppRegistrationResourceModifierConstructorDescriptionConstruct aDetailedAppRegistrationResourceobject based on the providedAppRegistrationResource. -
Uses of AppRegistrationResource in org.springframework.cloud.dataflow.server.config
Method parameters in org.springframework.cloud.dataflow.server.config with type arguments of type AppRegistrationResourceModifier and TypeMethodDescriptionDataFlowControllerAutoConfiguration.AppRegistryConfiguration.appRegistryController(Optional<StreamDefinitionRepository> streamDefinitionRepository, Optional<StreamService> streamService, AppRegistryService appRegistry, ApplicationConfigurationMetadataResolver metadataResolver, ForkJoinPool appRegistryFJPFB, StreamDefinitionService streamDefinitionService, AppRegistrationAssemblerProvider<? extends AppRegistrationResource> appRegistrationAssemblerProvider) DataFlowControllerAutoConfiguration.StreamEnabledConfiguration.streamDefinitionController(StreamService streamService, StreamDefinitionService streamDefinitionService, AppRegistryService appRegistryService, StreamDefinitionAssemblerProvider<? extends StreamDefinitionResource> streamDefinitionAssemblerProvider, AppRegistrationAssemblerProvider<? extends AppRegistrationResource> appRegistrationAssemblerProvider) -
Uses of AppRegistrationResource in org.springframework.cloud.dataflow.server.controller
Methods in org.springframework.cloud.dataflow.server.controller that return types with arguments of type AppRegistrationResourceModifier and TypeMethodDescriptionorg.springframework.hateoas.PagedModel<? extends AppRegistrationResource>AppRegistryController.list(org.springframework.data.domain.Pageable pageable, org.springframework.data.web.PagedResourcesAssembler<AppRegistration> pagedResourcesAssembler, ApplicationType type, String search, String version, boolean defaultVersion) List app registrations.List<? extends AppRegistrationResource>StreamDefinitionController.listApplications(String name) org.springframework.hateoas.PagedModel<? extends AppRegistrationResource>AppRegistryController.registerAll(org.springframework.data.domain.Pageable pageable, org.springframework.data.web.PagedResourcesAssembler<AppRegistration> pagedResourcesAssembler, String uri, String apps, boolean force) Register all applications listed in a properties file or provided as key/value pairs.Constructor parameters in org.springframework.cloud.dataflow.server.controller with type arguments of type AppRegistrationResourceModifierConstructorDescriptionAppRegistryController(Optional<StreamDefinitionRepository> streamDefinitionRepository, Optional<StreamService> streamService, AppRegistryService appRegistryService, ApplicationConfigurationMetadataResolver metadataResolver, ForkJoinPool forkJoinPool, StreamDefinitionService streamDefinitionService, AppRegistrationAssemblerProvider<? extends AppRegistrationResource> appRegistrationAssemblerProvider) StreamDefinitionController(StreamService streamService, StreamDefinitionService streamDefinitionService, AppRegistryService appRegistryService, StreamDefinitionAssemblerProvider<? extends StreamDefinitionResource> streamDefinitionAssemblerProvider, AppRegistrationAssemblerProvider<? extends AppRegistrationResource> appRegistrationAssemblerProvider) Create aStreamDefinitionControllerthat delegates toStreamService. -
Uses of AppRegistrationResource in org.springframework.cloud.dataflow.server.controller.assembler
Classes in org.springframework.cloud.dataflow.server.controller.assembler with type parameters of type AppRegistrationResourceModifier and TypeInterfaceDescriptioninterfaceThe interface that returns theRepresentationModelAssemblerfor any type which extendsAppRegistrationResource.classDefault REST resource assembler that returns theAppRegistrationResourcetype.