com.synopsys.integration.jira.common.model.components.TransitionComponent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of int-jira-common Show documentation
Show all versions of int-jira-common Show documentation
A library for using various capabilities of Jira.
/*
* 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