package eu.dnetlib.goldoa.domain.stats;

import com.google.gwt.user.client.rpc.IsSerializable;

/**
 * Created by stefania on 11/20/15.
 */
public class Triple<K, V, L> extends Tuple<K, V> implements IsSerializable {
    private L third;

    public Triple() {
    }

    public Triple(K first, V second, L third) {
        super(first, second);
        this.third = third;
    }

    public L getThird() {
        return third;
    }
}
