package opc.ua.services.common;

import java.util.Date;

import opc.ua.addressspace.datatypes.NodeId;

public class AggregateFilter {

	private Date startTime;
	private NodeId aggregateType;
	/** Duration */
	private long processingInterval;
	private AggregateConfiguration aggregateConfiguration;
	
	private class AggregateConfiguration {
	   useSeverCapabilities
	   Defaults
	   treatUncertainAsBad
	   percentDataBad
	   percentDataGood
	   steppedSloped
	   Extrapolation
	}
}
