/** * */ package org.gcube.accounting.datamodel.implementations.aggregated; import java.util.List; import org.gcube.accounting.datamodel.AggregatedUsageRecord; /** * @author Luca Frosini (ISTI - CNR) http://www.lucafrosini.com/ * */ public class StorageUsageUsageRecord extends org.gcube.accounting.datamodel.implementations.StorageUsageUsageRecord implements AggregatedUsageRecord { /** * Generated Serial Version UID */ private static final long serialVersionUID = 1082525518686785682L; public StorageUsageUsageRecord(){ super(); } /** * {@inheritDoc} */ @Override public List aggregate(List records) { // TODO implements throw new UnsupportedOperationException(); } }