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

com.flowcentraltech.flowcentral.studio.web.data.StepDialogCrudInfo Maven / Gradle / Ivy

There is a newer version: 3.0.2
Show newest version
/*
 * Copyright 2021-2024 FlowCentral Technologies Limited.
 * 
 * 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.flowcentraltech.flowcentral.studio.web.data;

import java.util.List;

import com.tcdng.unify.core.data.Listable;
import com.tcdng.unify.web.ui.widget.data.DialogCrudInfo;

/**
 * Step dialog information object.
 * 
 * @author FlowCentral Technologies Limited
 * @since 1.0
 */
public class StepDialogCrudInfo extends DialogCrudInfo {

    private String entityName;

    private String appletName;

    private Long workflowId;

    private List prevStepList;

    private List actionList;

    public StepDialogCrudInfo(Class typeClass, String entityName, Long workflowId) {
        super(typeClass);
        this.entityName = entityName;
        this.workflowId = workflowId;
    }

    public Long getWorkflowId() {
        return workflowId;
    }

    public String getEntityName() {
        return entityName;
    }

    public void setAppletName(String appletName) {
        this.appletName = appletName;
    }

    public String getAppletName() {
        return appletName;
    }

    public List getPrevStepList() {
        return prevStepList;
    }

    public void setPrevStepList(List prevStepList) {
        this.prevStepList = prevStepList;
    }

    public List getActionList() {
        return actionList;
    }

    public void setActionList(List actionList) {
        this.actionList = actionList;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy