Package com.emc.storageos.model.workflow

Examples of com.emc.storageos.model.workflow.StepList


     * @param id
     *        the ID of the workflow.
     * @return the list of workflow steps.
     */
    public List<WorkflowStepRestRep> getSteps(URI id) {
        StepList response = client.get(StepList.class, getIdUrl() + "/steps", id);
        return defaultList(response.getSteps());
    }
View Full Code Here


     * @param id
     *        the ID of the workflow.
     * @return the list of workflow steps.
     */
    public List<WorkflowStepRestRep> getSteps(URI id) {
        StepList response = client.get(StepList.class, getIdUrl() + "/steps", id);
        return defaultList(response.getSteps());
    }
View Full Code Here

TOP

Related Classes of com.emc.storageos.model.workflow.StepList

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.