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

com.capitalone.dashboard.request.GitSyncRequest Maven / Gradle / Ivy

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

import javax.validation.constraints.NotNull;

public class GitSyncRequest {
    @NotNull
    private String repo;
    @NotNull
    private String branch;
    @NotNull
    private int historyDays;

    public String getRepo() {
        return repo;
    }

    public void setRepo(String repo) {
        this.repo = repo;
    }

    public String getBranch() {
        return branch;
    }

    public void setBranch(String branch) {
        this.branch = branch;
    }

    public int getHistoryDays() { return historyDays; }

    public void setHistoryDays(int historyDays) { this.historyDays = historyDays; }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy