Interface SpringService.UpdateStages.WithConfiguration
-
- All Known Subinterfaces:
SpringService.Update
- Enclosing interface:
- SpringService.UpdateStages
public static interface SpringService.UpdateStages.WithConfigurationThe stage of a spring service update allowing to specify the server configuration.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SpringService.UpdatewithGitConfig(ConfigServerGitProperty gitConfig)Specifies the git repository for the spring service.SpringService.UpdatewithGitUri(String uri)Specifies the git repository for the spring service.SpringService.UpdatewithGitUriAndCredential(String uri, String username, String password)Specifies the git repository for the spring service.SpringService.UpdatewithoutGitConfig()Removes the git configuration.
-
-
-
Method Detail
-
withGitUri
SpringService.Update withGitUri(String uri)
Specifies the git repository for the spring service.- Parameters:
uri- the uri of the git repository- Returns:
- the next stage of spring service update
-
withGitUriAndCredential
SpringService.Update withGitUriAndCredential(String uri, String username, String password)
Specifies the git repository for the spring service.- Parameters:
uri- the uri of the git repositoryusername- the username of the private git repositorypassword- the password of the private git repository- Returns:
- the next stage of spring service update
-
withGitConfig
SpringService.Update withGitConfig(ConfigServerGitProperty gitConfig)
Specifies the git repository for the spring service.- Parameters:
gitConfig- the configuration of the git repository- Returns:
- the next stage of spring service update
-
withoutGitConfig
SpringService.Update withoutGitConfig()
Removes the git configuration.- Returns:
- the next stage of spring service update
-
-