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

com.didiglobal.turbo.engine.model.FlowModel Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
package com.didiglobal.turbo.engine.model;

import com.google.common.base.MoreObjects;

import java.util.List;

public class FlowModel {
    private List flowElementList;

    public List getFlowElementList() {
        return flowElementList;
    }

    public void setFlowElementList(List flowElementList) {
        this.flowElementList = flowElementList;
    }

    @Override
    public String toString() {
        return MoreObjects.toStringHelper(this)
                .add("flowElementList", flowElementList)
                .toString();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy