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

org.whitesource.agent.api.model.contribution.ContributionInfoCollection Maven / Gradle / Ivy

There is a newer version: 18.4.1
Show newest version
package org.whitesource.agent.api.model.contribution;

import java.util.Collection;
import java.util.LinkedList;

/**
 * This object represents a collection of code contributions made in a single repository.
 *
 * @author tom.shapira
 */
public class ContributionInfoCollection extends LinkedList {

    private static final long serialVersionUID = -5141569905340706621L;

    public ContributionInfoCollection() {
    }

    public ContributionInfoCollection(Collection c) {
        super(c);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy