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.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 |
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 |
---|---|
ApplicationType |
AppRegistration.getType() |
Modifier and Type | Method and Description |
---|---|
void |
AppRegistry.delete(String name,
ApplicationType type)
Deletes an
AppRegistration . |
AppRegistration |
AppRegistry.find(String name,
ApplicationType type) |
AppRegistration |
AppRegistry.save(String name,
ApplicationType type,
URI uri,
URI metadataUri) |
Constructor and Description |
---|
AppRegistration(String name,
ApplicationType type,
URI uri,
org.springframework.core.io.ResourceLoader loader)
Construct an
AppRegistration object. |
AppRegistration(String name,
ApplicationType type,
URI uri,
URI metadataUri,
org.springframework.core.io.ResourceLoader loader)
Construct an
AppRegistration object. |
Constructor and Description |
---|
NoSuchAppRegistrationException(String name,
ApplicationType type) |
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.
|
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 . |
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.
|
void |
AppRegistryTemplate.unregister(String name,
ApplicationType applicationType) |
void |
AppRegistryOperations.unregister(String name,
ApplicationType type)
Unregister an application name and type.
|
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 |
AppRegistryController.info(ApplicationType type,
String name)
Retrieve detailed information about a particular application.
|
org.springframework.hateoas.PagedResources<? extends AppRegistrationResource> |
AppRegistryController.list(org.springframework.data.domain.Pageable pageable,
org.springframework.data.web.PagedResourcesAssembler<AppRegistration> pagedResourcesAssembler,
ApplicationType type)
List app registrations.
|
void |
AppRegistryController.register(ApplicationType type,
String name,
String uri,
String metadataUri,
boolean force)
Register a module name and type with its URI.
|
void |
AppRegistryController.unregister(ApplicationType type,
String name)
Unregister an application by name and type.
|
Modifier and Type | Field and Description |
---|---|
ApplicationType |
AppRegistryCommands.QualifiedApplicationName.type |
Modifier and Type | Method and Description |
---|---|
String |
AppRegistryCommands.register(String name,
ApplicationType type,
String uri,
String metadataUri,
boolean force) |
String |
AppRegistryCommands.unregister(String name,
ApplicationType type) |
Constructor and Description |
---|
QualifiedApplicationName(String name,
ApplicationType type) |
Copyright © 2017 Pivotal Software, Inc.. All rights reserved.