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

com.hp.octane.integrations.services.pullrequestsandbranches.BranchSyncResult Maven / Gradle / Ivy

There is a newer version: 2.24.3.5
Show newest version
package com.hp.octane.integrations.services.pullrequestsandbranches;

import com.hp.octane.integrations.dto.scm.Branch;

import java.util.ArrayList;
import java.util.List;

public class BranchSyncResult {

    private List deleted = new ArrayList<>();

    private List created = new ArrayList<>();

    private List updated = new ArrayList<>();

    public List getDeleted() {
        return deleted;
    }

    public List getCreated() {
        return created;
    }

    public List getUpdated() {
        return updated;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy