org.whitesource.agent.api.model.contribution.ContributionInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wss-agent-api Show documentation
Show all versions of wss-agent-api Show documentation
Java bindings for White Source API
package org.whitesource.agent.api.model.contribution;
import java.io.Serializable;
import java.util.Collection;
import java.util.LinkedList;
/**
* This object represents the code contributions made in a single repository.
*
* @author tom.shapira
*/
public class ContributionInfo implements Serializable {
private static final long serialVersionUID = 6052569974965476656L;
private String repository;
private Collection contributingDevelopers;
public ContributionInfo() {
contributingDevelopers = new LinkedList<>();
}
public ContributionInfo(String repository) {
this.repository = repository;
}
public String getRepository() {
return repository;
}
public void setRepository(String repository) {
this.repository = repository;
}
public Collection getContributingDevelopers() {
return contributingDevelopers;
}
public void setContributingDevelopers(Collection contributingDevelopers) {
this.contributingDevelopers = contributingDevelopers;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy