Package | Description |
---|---|
org.springframework.cloud.dataflow.core |
Root package of the Spring Cloud Data Flow domain model.
|
org.springframework.cloud.dataflow.registry |
Root package of the Data Flow registry support.
|
org.springframework.cloud.dataflow.registry.domain |
Root package of Spring Cloud Data Flow Core.
|
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.registry.support |
Contains
AppRegistration support
classes. |
org.springframework.cloud.dataflow.rest.client |
Defines the operations of the Spring Cloud Data Flow REST Client.
|
org.springframework.cloud.dataflow.server |
Root package of Spring Cloud Data Flow Core.
|
org.springframework.cloud.dataflow.server.controller |
Spring Cloud Data Flow Server Controllers.
|
org.springframework.cloud.dataflow.shell.command.classic |
Command classes for the Spring Cloud Data Flow Shell.
|
org.springframework.cloud.dataflow.shell.command.common |
Command classes for the Spring Cloud Data Flow Shell.
|
org.springframework.cloud.dataflow.shell.command.skipper |
Command classes for the Spring Cloud Data Flow Shell.
|
Modifier and Type | Method and Description |
---|---|
static ApplicationType |
ApplicationType.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ApplicationType[] |
ApplicationType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
boolean |
AppRegistryCommon.appExist(String name,
ApplicationType type)
Checks if an application with such name and type exists and is set as default.
|
boolean |
AppRegistry.appExist(String name,
ApplicationType type) |
void |
AppRegistry.delete(String name,
ApplicationType type)
Deletes an
AppRegistration . |
AppRegistration |
AppRegistryCommon.find(String name,
ApplicationType type) |
AppRegistration |
AppRegistry.find(String name,
ApplicationType type) |
default AppRegistration |
AppRegistryCommon.find(String name,
ApplicationType type,
String version) |
AppRegistration |
AppRegistry.save(String name,
ApplicationType type,
URI uri,
URI metadataUri) |
Modifier and Type | Method and Description |
---|---|
ApplicationType |
AppRegistration.getType() |
Modifier and Type | Method and Description |
---|---|
void |
AppRegistration.setType(ApplicationType type) |
Constructor and Description |
---|
AppRegistration(String name,
ApplicationType type,
String version,
URI uri,
URI metadataUri)
Construct an
AppRegistration object. |
AppRegistration(String name,
ApplicationType type,
URI uri)
Construct an
AppRegistration object with empty version and metadata uri |
AppRegistration(String name,
ApplicationType type,
URI uri,
URI metadataUri)
Construct an
AppRegistration object with empty version |
Modifier and Type | Method and Description |
---|---|
void |
AppRegistrationRepository.deleteAppRegistrationByNameAndTypeAndVersion(String name,
ApplicationType type,
String version) |
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) |
AppRegistration |
AppRegistrationRepository.findAppRegistrationByNameAndTypeAndDefaultVersionIsTrue(String name,
ApplicationType type) |
AppRegistration |
AppRegistrationRepository.findAppRegistrationByNameAndTypeAndVersion(String name,
ApplicationType type,
String version) |
Modifier and Type | Method and Description |
---|---|
boolean |
DefaultAppRegistryService.appExist(String name,
ApplicationType type) |
boolean |
DefaultAppRegistryService.appExist(String name,
ApplicationType type,
String version) |
boolean |
AppRegistryService.appExist(String name,
ApplicationType type,
String version)
Checks if an
AppRegistration with this name, type and version exists. |
void |
DefaultAppRegistryService.delete(String name,
ApplicationType type,
String version)
Deletes an
AppRegistration . |
void |
AppRegistryService.delete(String name,
ApplicationType type,
String version)
Deletes an
AppRegistration . |
AppRegistration |
DefaultAppRegistryService.find(String name,
ApplicationType type) |
AppRegistration |
DefaultAppRegistryService.find(String name,
ApplicationType type,
String version) |
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) |
AppRegistration |
DefaultAppRegistryService.getDefaultApp(String name,
ApplicationType type) |
AppRegistration |
AppRegistryService.getDefaultApp(String name,
ApplicationType type) |
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. |
void |
DefaultAppRegistryService.setDefaultApp(String name,
ApplicationType type,
String version) |
void |
AppRegistryService.setDefaultApp(String name,
ApplicationType type,
String version)
Set an application with name, type and version as the default for all name:type
applications.
|
Constructor and Description |
---|
NoSuchAppRegistrationException(String name,
ApplicationType type) |
NoSuchAppRegistrationException(String name,
ApplicationType type,
String version) |
Modifier and Type | Method and Description |
---|---|
DetailedAppRegistrationResource |
AppRegistryTemplate.info(String name,
ApplicationType type) |
DetailedAppRegistrationResource |
AppRegistryOperations.info(String name,
ApplicationType type)
Retrieve information about an application registration.
|
DetailedAppRegistrationResource |
AppRegistryTemplate.info(String name,
ApplicationType type,
String version) |
DetailedAppRegistrationResource |
AppRegistryOperations.info(String name,
ApplicationType type,
String version)
Retrieve information about an application registration.
|
org.springframework.hateoas.PagedResources<AppRegistrationResource> |
AppRegistryTemplate.list(ApplicationType type) |
org.springframework.hateoas.PagedResources<AppRegistrationResource> |
AppRegistryOperations.list(ApplicationType type)
Return a list of all application registrations for the given
ApplicationType . |
void |
AppRegistryTemplate.makeDefault(String name,
ApplicationType type,
String version) |
void |
AppRegistryOperations.makeDefault(String name,
ApplicationType type,
String version)
Set application version to default
|
AppRegistrationResource |
AppRegistryTemplate.register(String name,
ApplicationType type,
String uri,
String metadataUri,
boolean force) |
AppRegistrationResource |
AppRegistryOperations.register(String name,
ApplicationType type,
String uri,
String metadataUri,
boolean force)
Register an application name and type with its Maven coordinates.
|
AppRegistrationResource |
AppRegistryTemplate.register(String name,
ApplicationType type,
String version,
String uri,
String metadataUri,
boolean force) |
AppRegistrationResource |
AppRegistryOperations.register(String name,
ApplicationType type,
String version,
String uri,
String metadataUri,
boolean force)
Register an application name, type and version with its Maven coordinates.
|
void |
AppRegistryTemplate.unregister(String name,
ApplicationType applicationType) |
void |
AppRegistryOperations.unregister(String name,
ApplicationType type)
Unregister an application name and type.
|
void |
AppRegistryTemplate.unregister(String name,
ApplicationType applicationType,
String version) |
void |
AppRegistryOperations.unregister(String name,
ApplicationType type,
String version)
Unregister an application by name type and version
|
Modifier and Type | Method and Description |
---|---|
static ApplicationType |
DataFlowServerUtil.determineApplicationType(StreamAppDefinition appDefinition)
Return the
ApplicationType for a AppDefinition in the context of a
defined stream. |
Modifier and Type | Method and Description |
---|---|
DetailedAppRegistrationResource |
SkipperAppRegistryController.info(ApplicationType type,
String name)
Deprecated.
|
DetailedAppRegistrationResource |
AppRegistryController.info(ApplicationType type,
String name)
Retrieve detailed information about a particular application.
|
DetailedAppRegistrationResource |
SkipperAppRegistryController.info(ApplicationType type,
String name,
String version)
Retrieve detailed information about a particular application.
|
org.springframework.hateoas.PagedResources<? extends AppRegistrationResource> |
SkipperAppRegistryController.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.list(org.springframework.data.domain.Pageable pageable,
org.springframework.data.web.PagedResourcesAssembler<AppRegistration> pagedResourcesAssembler,
ApplicationType type,
String search)
List app registrations.
|
void |
SkipperAppRegistryController.makeDefault(ApplicationType type,
String name,
String version)
Set a module version as default
|
void |
SkipperAppRegistryController.register(ApplicationType type,
String name,
String uri,
String metadataUri,
boolean force)
Deprecated.
|
void |
AppRegistryController.register(ApplicationType type,
String name,
String uri,
String metadataUri,
boolean force)
Register a module name and type with its URI.
|
void |
SkipperAppRegistryController.register(ApplicationType type,
String name,
String version,
String uri,
String metadataUri,
boolean force)
Register a module name and type with its URI.
|
void |
SkipperAppRegistryController.unregister(ApplicationType type,
String name)
Deprecated.
|
void |
AppRegistryController.unregister(ApplicationType type,
String name)
Unregister an application by name and type.
|
void |
SkipperAppRegistryController.unregister(ApplicationType type,
String name,
String version)
Unregister an application by name and type.
|
Modifier and Type | Method and Description |
---|---|
String |
ClassicAppRegistryCommands.unregister(String name,
ApplicationType type) |
Modifier and Type | Field and Description |
---|---|
ApplicationType |
AbstractAppRegistryCommands.QualifiedApplicationName.type |
Modifier and Type | Method and Description |
---|---|
String |
AbstractAppRegistryCommands.register(String name,
ApplicationType type,
String uri,
String metadataUri,
boolean force) |
Constructor and Description |
---|
QualifiedApplicationName(String name,
ApplicationType type) |
Modifier and Type | Method and Description |
---|---|
String |
SkipperAppRegistryCommands.unregister(String name,
ApplicationType type,
String version) |
Copyright © 2018 Pivotal Software, Inc.. All rights reserved.