public interface AppRegistryOperations
| Modifier and Type | Method and Description |
|---|---|
org.springframework.hateoas.PagedResources<AppRegistrationResource> |
importFromResource(String uri,
boolean force)
Register all applications listed in a properties file.
|
DetailedAppRegistrationResource |
info(String name,
ApplicationType type)
Retrieve information about an application registration.
|
org.springframework.hateoas.PagedResources<AppRegistrationResource> |
list()
Return a list of all application registrations.
|
org.springframework.hateoas.PagedResources<AppRegistrationResource> |
list(ApplicationType type)
Return a list of all application registrations for the given
ApplicationType. |
AppRegistrationResource |
register(String name,
ApplicationType type,
String uri,
boolean force)
Register an application name and type with its Maven coordinates.
|
org.springframework.hateoas.PagedResources<AppRegistrationResource> |
registerAll(Properties apps,
boolean force)
Register all applications provided as key/value pairs.
|
void |
unregister(String name,
ApplicationType type)
Unregister an application name and type.
|
org.springframework.hateoas.PagedResources<AppRegistrationResource> list()
org.springframework.hateoas.PagedResources<AppRegistrationResource> list(ApplicationType type)
ApplicationType.type - application type for which to return a list of registrationsDetailedAppRegistrationResource info(String name, ApplicationType type)
name - name of applicationtype - application typeAppRegistrationResource register(String name, ApplicationType type, String uri, boolean force)
name - application nametype - application typeuri - URI for the application artifactforce - if true, overwrites a pre-existing registrationvoid unregister(String name, ApplicationType type)
name - application nametype - application typeorg.springframework.hateoas.PagedResources<AppRegistrationResource> importFromResource(String uri, boolean force)
uri - URI for the properties fileforce - if true, overwrites any pre-existing registrationsorg.springframework.hateoas.PagedResources<AppRegistrationResource> registerAll(Properties apps, boolean force)
apps - the apps as key/value pairs where key is "type.name" and value is a URIforce - if true, overwrites any pre-existing registrationsCopyright © 2016 Pivotal Software, Inc.. All rights reserved.