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

com.synopsys.integration.jira.common.server.model.CustomFieldModel 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.server.model;

import com.synopsys.integration.util.Stringable;

public class CustomFieldModel extends Stringable {
    private String id;
    private String name;
    private String type;
    private String searcherKey;
    private String self;
    private Integer numericId;
    private Boolean isLocked;
    private Boolean isManaged;
    private Boolean isAllProjects;
    private Integer projectsCount;
    private Integer screensCount;

    public CustomFieldModel() {
        // For serialization
    }

    public CustomFieldModel(String id, String name, String type, String searcherKey, String self, Integer numericId, Boolean isLocked, Boolean isManaged, Boolean isAllProjects, Integer projectsCount, Integer screensCount) {
        this.id = id;
        this.name = name;
        this.type = type;
        this.searcherKey = searcherKey;
        this.self = self;
        this.numericId = numericId;
        this.isLocked = isLocked;
        this.isManaged = isManaged;
        this.isAllProjects = isAllProjects;
        this.projectsCount = projectsCount;
        this.screensCount = screensCount;
    }

    public String getId() {
        return id;
    }

    public String getName() {
        return name;
    }

    public String getType() {
        return type;
    }

    public String getSearcherKey() {
        return searcherKey;
    }

    public String getSelf() {
        return self;
    }

    public Integer getNumericId() {
        return numericId;
    }

    public Boolean getLocked() {
        return isLocked;
    }

    public Boolean getManaged() {
        return isManaged;
    }

    public Boolean getAllProjects() {
        return isAllProjects;
    }

    public Integer getProjectsCount() {
        return projectsCount;
    }

    public Integer getScreensCount() {
        return screensCount;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy