/** * */ package org.gcube.accounting.datamodel.implementations.aggregated; import java.io.Serializable; import java.util.List; import java.util.Map; import org.gcube.accounting.datamodel.AggregatedUsageRecord; import org.gcube.accounting.exception.InvalidValueException; /** * @author Luca Frosini (ISTI - CNR) http://www.lucafrosini.com/ * */ public class JobUsageRecord extends org.gcube.accounting.datamodel.implementations.JobUsageRecord implements AggregatedUsageRecord { /** * Generated Serial Version UID */ private static final long serialVersionUID = -3376423316219914682L; public JobUsageRecord(){ super(); this.resourceProperties.put(AGGREGATED, true); } public JobUsageRecord(Map properties) throws InvalidValueException{ super(properties); this.resourceProperties.put(AGGREGATED, true); } /** * {@inheritDoc} */ @Override public List aggregate(List records) { // TODO throw new UnsupportedOperationException(); } }