/** * */ 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 PortletUsageRecord extends org.gcube.accounting.datamodel.implementations.PortletUsageRecord implements AggregatedUsageRecord { /** * Generated Serial version UID */ private static final long serialVersionUID = 7445526162102677455L; public PortletUsageRecord(){ super(); } /** * {@inheritDoc} */ @Override public List aggregate(List records) { // TODO implements throw new UnsupportedOperationException(); } }