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

com.synopsys.integration.jira.common.model.request.VersionRequestModel Maven / Gradle / Ivy

There is a newer version: 4.1.1
Show newest version
/*
 * int-jira-common
 *
 * Copyright (c) 2023 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.request;

public class VersionRequestModel extends JiraRequestModel {
    private String description;
    private String name;
    private boolean archived;
    private boolean released;
    private String releaseDate;
    private String userReleaseDate;
    private String project;
    private String projectId;

    public VersionRequestModel() {
    }

    public VersionRequestModel(String name, String projectId) {
        this.name = name;
        this.projectId = projectId;
    }

    public VersionRequestModel(
        String description,
        String name,
        boolean archived,
        boolean released,
        String releaseDate,
        String userReleaseDate,
        String project,
        String projectId
    ) {
        this.description = description;
        this.name = name;
        this.archived = archived;
        this.released = released;
        this.releaseDate = releaseDate;
        this.userReleaseDate = userReleaseDate;
        this.project = project;
        this.projectId = projectId;
    }

    public String getDescription() {
        return description;
    }

    public String getName() {
        return name;
    }

    public boolean isArchived() {
        return archived;
    }

    public boolean isReleased() {
        return released;
    }

    public String getReleaseDate() {
        return releaseDate;
    }

    public String getUserReleaseDate() {
        return userReleaseDate;
    }

    public String getProject() {
        return project;
    }

    public String getProjectId() {
        return projectId;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy