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

com.didiglobal.turbo.engine.param.DeployFlowParam Maven / Gradle / Ivy

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

import com.google.common.base.MoreObjects;

public class DeployFlowParam extends OperationParam {
    private String flowModuleId;

    public DeployFlowParam(String tenant, String caller) {
        super(tenant, caller);
    }

    public String getFlowModuleId() {
        return flowModuleId;
    }

    public void setFlowModuleId(String flowModuleId) {
        this.flowModuleId = flowModuleId;
    }

    @Override
    public String toString() {
        return MoreObjects.toStringHelper(this)
                .add("tenant", getTenant())
                .add("caller", getCaller())
                .add("operator", getOperator())
                .add("flowModuleId", flowModuleId)
                .toString();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy