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

com.webank.wedatasphere.dss.server.service.DWSFlowService Maven / Gradle / Ivy

There is a newer version: 1.1.2
Show newest version
/*
 * Copyright 2019 WeBank
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 */

package com.webank.wedatasphere.dss.server.service;





import com.webank.wedatasphere.dss.appjoint.exception.AppJointErrorException;
import com.webank.wedatasphere.dss.common.entity.flow.DWSFlow;
import com.webank.wedatasphere.dss.common.entity.flow.DWSFlowVersion;
import com.webank.wedatasphere.dss.common.exception.DSSErrorException;
import com.webank.wedatasphere.dss.server.operate.Op;

import java.util.List;


public interface DWSFlowService {
    DWSFlow getFlowByID(Long id);

    List listAllFlowVersions(Long flowID, Long projectVersionID);

    DWSFlow addRootFlow(DWSFlow dwsFlow, Long taxonomyID, Long projectVersionID) throws DSSErrorException;

    DWSFlow addSubFlow(DWSFlow dwsFlow, Long parentFlowID, Long projectVersionID) throws DSSErrorException;

    /**
     * 通过flowID获取最新版本的dwsFlow,版本信息在latestVersion
     * @param flowID
     * @return
     */
    DWSFlow getLatestVersionFlow(Long flowID, Long projectVersionID) throws DSSErrorException;

    /**
     * 通过flowID和某个版本号,获取一个dwsFlow,版本信息在versions数组中的第一个元素
     * @param flowID
     * @return
     */
    DWSFlow getOneVersionFlow(Long flowID, String version, Long projectVersionID);

    /**
     * 通过dwsFlow对象拿到最新的json,其实这里只要个flowID应该就可以了
     * @param dwsFlow
     * @return
     */
/*    String getLatestJsonByFlow(DWSFlow dwsFlow);

    DWSFlow getLatestVersionFlow(Long ProjectID,String flowName);*/

    void updateFlowBaseInfo(DWSFlow dwsFlow, Long projectVersionID, Long taxonomyID) throws DSSErrorException;

    void updateFlowTaxonomyRelation(Long flowID, Long taxonomyID) throws DSSErrorException;

    void batchDeleteFlow(List flowIDlist, Long projectVersionID);

    String saveFlow(Long flowID, String jsonFlow, String comment, String userName, Long projectVersionID, List ops) throws DSSErrorException, AppJointErrorException;

    Integer getParentRank(Long flowID);

    DWSFlowVersion getLatestVersionByFlowIDAndProjectVersionID(Long flowID, Long projectVersionID);

    Long getParentFlowID(Long id);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy