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

org.jbpm.designer.taskforms.TaskFormOutput Maven / Gradle / Ivy

/*
 * Copyright 2017 Red Hat, Inc. and/or its affiliates.
 *
 * 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 org.jbpm.designer.taskforms;

/**
 * Holds info for one task form output.
 */
public class TaskFormOutput {

    private String name;
    private String value;
    private String refType;
    private boolean booleanRefType;
    private boolean integerRefType;
    private boolean dateRefType;
    private boolean floatRefType;

    public String getRefType() {
        return refType;
    }

    public void setRefType(String refType) {
        this.refType = refType;
        if (refType != null) {
            this.booleanRefType = this.refType.equals("Boolean");
            this.integerRefType = this.refType.equals("Integer");
            this.dateRefType = this.refType.equals("Date");
            this.dateRefType = this.refType.equals("Float");
        }
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public boolean isBooleanRefType() {
        return booleanRefType;
    }

    public void setBooleanRefType(boolean booleanRefType) {
        this.booleanRefType = booleanRefType;
    }

    public boolean isIntegerRefType() {
        return integerRefType;
    }

    public void setIntegerRefType(boolean integerRefType) {
        this.integerRefType = integerRefType;
    }

    public boolean isDateRefType() {
        return dateRefType;
    }

    public void setDateRefType(boolean dateRefType) {
        this.dateRefType = dateRefType;
    }

    public boolean isFloatRefType() {
        return floatRefType;
    }

    public void setFloatRefType(boolean floatRefType) {
        this.floatRefType = floatRefType;
    }

    public String getValue() {
        return value;
    }

    public void setValue(String value) {
        this.value = value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy