Package | Description |
---|---|
org.springframework.cloud.dataflow.core |
Root package of the Spring Cloud Data Flow domain model.
|
org.springframework.cloud.dataflow.registry.repository |
Root package of Spring Cloud Data Flow Core.
|
org.springframework.cloud.dataflow.registry.service |
Root package of Spring Cloud Data Flow Core.
|
org.springframework.cloud.dataflow.server.controller |
Spring Cloud Data Flow Server Controllers.
|
Modifier and Type | Method and Description |
---|---|
int |
AppRegistration.compareTo(AppRegistration that) |
Modifier and Type | Method and Description |
---|---|
<S extends AppRegistration> |
AppRegistrationRepository.save(S s) |
Modifier and Type | Method and Description |
---|---|
AppRegistration |
AppRegistrationRepository.findAppRegistrationByNameAndTypeAndDefaultVersionIsTrue(String name,
ApplicationType type) |
AppRegistration |
AppRegistrationRepository.findAppRegistrationByNameAndTypeAndVersion(String name,
ApplicationType type,
String version) |
Modifier and Type | Method and Description |
---|---|
List<AppRegistration> |
AppRegistrationRepository.findAll() |
org.springframework.data.domain.Page<AppRegistration> |
AppRegistrationRepository.findAllByNameContainingIgnoreCase(String name,
org.springframework.data.domain.Pageable pageable) |
org.springframework.data.domain.Page<AppRegistration> |
AppRegistrationRepository.findAllByType(ApplicationType type,
org.springframework.data.domain.Pageable pageable) |
org.springframework.data.domain.Page<AppRegistration> |
AppRegistrationRepository.findAllByTypeAndNameContainingIgnoreCase(ApplicationType type,
String name,
org.springframework.data.domain.Pageable pageable) |
Modifier and Type | Method and Description |
---|---|
AppRegistration |
DefaultAppRegistryService.find(String name,
ApplicationType type) |
AppRegistration |
AppRegistryService.find(String name,
ApplicationType type) |
AppRegistration |
DefaultAppRegistryService.find(String name,
ApplicationType type,
String version) |
default AppRegistration |
AppRegistryService.find(String name,
ApplicationType type,
String version) |
AppRegistration |
DefaultAppRegistryService.getDefaultApp(String name,
ApplicationType type) |
AppRegistration |
AppRegistryService.getDefaultApp(String name,
ApplicationType type) |
AppRegistration |
DefaultAppRegistryService.save(AppRegistration app) |
AppRegistration |
AppRegistryService.save(AppRegistration app)
Save an
AppRegistration instance. |
AppRegistration |
DefaultAppRegistryService.save(String name,
ApplicationType type,
String version,
URI uri,
URI metadataUri) |
AppRegistration |
AppRegistryService.save(String name,
ApplicationType type,
String version,
URI uri,
URI metadataUri)
Saves a new
AppRegistration identified by its name, type, version and URIs. |
Modifier and Type | Method and Description |
---|---|
List<AppRegistration> |
DefaultAppRegistryService.findAll() |
List<AppRegistration> |
AppRegistryService.findAll() |
org.springframework.data.domain.Page<AppRegistration> |
DefaultAppRegistryService.findAll(org.springframework.data.domain.Pageable pageable) |
org.springframework.data.domain.Page<AppRegistration> |
AppRegistryService.findAll(org.springframework.data.domain.Pageable pageable) |
org.springframework.data.domain.Page<AppRegistration> |
DefaultAppRegistryService.findAllByTypeAndNameIsLike(ApplicationType type,
String name,
org.springframework.data.domain.Pageable pageable) |
org.springframework.data.domain.Page<AppRegistration> |
AppRegistryService.findAllByTypeAndNameIsLike(ApplicationType type,
String name,
org.springframework.data.domain.Pageable pageable) |
List<AppRegistration> |
DefaultAppRegistryService.importAll(boolean overwrite,
org.springframework.core.io.Resource... resources) |
List<AppRegistration> |
AppRegistryService.importAll(boolean overwrite,
org.springframework.core.io.Resource... resources)
Import bulk of applications from input load files
|
Modifier and Type | Method and Description |
---|---|
org.springframework.core.io.Resource |
DefaultAppRegistryService.getAppMetadataResource(AppRegistration appRegistration) |
org.springframework.core.io.Resource |
AppRegistryService.getAppMetadataResource(AppRegistration appRegistration)
Converts application's metadata URI into Spring resource object.
|
org.springframework.core.io.Resource |
DefaultAppRegistryService.getAppResource(AppRegistration appRegistration) |
org.springframework.core.io.Resource |
AppRegistryService.getAppResource(AppRegistration appRegistration)
Converts application's URI into Spring resource object.
|
protected boolean |
DefaultAppRegistryService.isOverwrite(AppRegistration app,
boolean overwrite) |
AppRegistration |
DefaultAppRegistryService.save(AppRegistration app) |
AppRegistration |
AppRegistryService.save(AppRegistration app)
Save an
AppRegistration instance. |
void |
DefaultAppRegistryService.validate(AppRegistration registration,
String uri,
String version) |
void |
AppRegistryService.validate(AppRegistration registration,
String uri,
String version)
Validate given registration with given uri and version.
|
Modifier and Type | Method and Description |
---|---|
void |
DefaultAppRegistryService.deleteAll(Iterable<AppRegistration> appRegistrations) |
void |
AppRegistryService.deleteAll(Iterable<AppRegistration> appRegistrations)
Deletes all provided
AppRegistration 's. |
Modifier and Type | Method and Description |
---|---|
AppRegistration |
AppAlreadyRegisteredException.getPrevious() |
Modifier and Type | Method and Description |
---|---|
org.springframework.hateoas.PagedResources<? extends AppRegistrationResource> |
AppRegistryController.list(org.springframework.data.domain.Pageable pageable,
org.springframework.data.web.PagedResourcesAssembler<AppRegistration> pagedResourcesAssembler,
ApplicationType type,
String search)
List app registrations.
|
org.springframework.hateoas.PagedResources<? 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 and Description |
---|
AppAlreadyRegisteredException(AppRegistration previous) |
Copyright © 2019 Pivotal Software, Inc.. All rights reserved.