org.cloudfoundry.client.lib.ApplicationServicesUpdateCallback Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cloudfoundry-client-lib Show documentation
Show all versions of cloudfoundry-client-lib Show documentation
A Cloud Foundry client library for Java
The newest version!
package org.cloudfoundry.client.lib;
public interface ApplicationServicesUpdateCallback {
void onError(CloudOperationException e, String applicationName, String serviceName);
ApplicationServicesUpdateCallback DEFAULT_APPLICATION_SERVICES_UPDATE_CALLBACK = (e, applicationName, serviceName) -> {
};
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy