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

org.openstack4j.api.workflow.TaskExecutionService Maven / Gradle / Ivy

package org.openstack4j.api.workflow;

import org.openstack4j.common.RestService;
import org.openstack4j.model.workflow.TaskExecution;

import java.util.List;

/**
 * Service that provides CRUD operations for task executions.
 *
 * @author Renat Akhmerov
 */
public interface TaskExecutionService extends RestService {
    /**
     * List all task executions with details.
     *
     * @return List of task executions.
     */
    List list();

    /**
     * Get task execution by its ID.
     *
     * @param id Task execution ID.
     * @return Task execution.
     */
    TaskExecution get(String id);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy