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

com.capitalone.dashboard.webhook.settings.JenkinsBuildWebHookSettings Maven / Gradle / Ivy

There is a newer version: 3.4.53
Show newest version
package com.capitalone.dashboard.webhook.settings;

import java.util.List;

public class JenkinsBuildWebHookSettings {

    private List excludeCodeReposInBuild;

    private boolean enableFilterLibraryRepos;

    private int excludeLibraryRepoThreshold;

    public List getExcludeCodeReposInBuild() {
        return excludeCodeReposInBuild;
    }

    public void setExcludeCodeReposInBuild(List excludeCodeReposInBuild) {
        this.excludeCodeReposInBuild = excludeCodeReposInBuild;
    }

    public boolean isEnableFilterLibraryRepos() {
        return enableFilterLibraryRepos;
    }

    public void setEnableFilterLibraryRepos(boolean enableFilterLibraryRepos) {
        this.enableFilterLibraryRepos = enableFilterLibraryRepos;
    }

    public int getExcludeLibraryRepoThreshold() {
        return excludeLibraryRepoThreshold;
    }

    public void setExcludeLibraryRepoThreshold(int excludeLibraryRepoThreshold) {
        this.excludeLibraryRepoThreshold = excludeLibraryRepoThreshold;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy