All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.cloudfoundry.multiapps.controller.process.steps.PollServiceUnbindingLastOperationExecution Maven / Gradle / Ivy

There is a newer version: 1.183.0
Show newest version
package org.cloudfoundry.multiapps.controller.process.steps;

import com.sap.cloudfoundry.client.facade.domain.CloudServiceBinding;

public class PollServiceUnbindingLastOperationExecution extends PollServiceBindingLastOperationExecution {

    @Override
    protected AsyncExecutionState checkServiceBindingOperationState(CloudServiceBinding serviceBinding, ProcessContext context) {
        if (serviceBinding == null) {
            return AsyncExecutionState.FINISHED;
        }
        return super.checkServiceBindingOperationState(serviceBinding, context);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy