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

com.synopsys.integration.jira.common.model.components.TransitionComponent Maven / Gradle / Ivy

There is a newer version: 4.1.1
Show newest version
/*
 * int-jira-common
 *
 * Copyright (c) 2024 Synopsys, Inc.
 *
 * Use subject to the terms and conditions of the Synopsys End User Software License and Maintenance Agreement. All rights reserved worldwide.
 */
package com.synopsys.integration.jira.common.model.components;

import java.util.Map;

import com.synopsys.integration.rest.component.IntRestComponent;

public class TransitionComponent extends IntRestComponent {
    private String id;
    private String name;
    private StatusDetailsComponent to;
    private Boolean hasScreen;
    private Boolean isGlobal;
    private Boolean isInitial;
    private Map fields;
    private String expand;

    public TransitionComponent() {
    }

    public TransitionComponent(final String id, final String name, final StatusDetailsComponent to, final Boolean hasScreen, final Boolean isGlobal, final Boolean isInitial, final Map fields, final String expand) {
        this.id = id;
        this.name = name;
        this.to = to;
        this.hasScreen = hasScreen;
        this.isGlobal = isGlobal;
        this.isInitial = isInitial;
        this.fields = fields;
        this.expand = expand;
    }

    public String getId() {
        return id;
    }

    public String getName() {
        return name;
    }

    public StatusDetailsComponent getTo() {
        return to;
    }

    public Boolean getHasScreen() {
        return hasScreen;
    }

    public Boolean getGlobal() {
        return isGlobal;
    }

    public Boolean getInitial() {
        return isInitial;
    }

    public Map getFields() {
        return fields;
    }

    public String getExpand() {
        return expand;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy