blob: 16e8baee8519e7eff09df1700083118407d82198 [file] [log] [blame]
package edu.uci.ics.asterix.metadata.declared;
import edu.uci.ics.asterix.om.types.IAType;
import edu.uci.ics.hyracks.algebricks.common.exceptions.AlgebricksException;
public class ExternalFeedDataSource extends AqlDataSource {
public ExternalFeedDataSource(AqlSourceId id, AqlCompiledDatasetDecl adecl, IAType itemType) throws AlgebricksException {
super(id,adecl, itemType);
}
public ExternalFeedDataSource(AqlSourceId id, AqlCompiledDatasetDecl adecl, IAType itemType, AqlDataSourceType dataSourceType) throws AlgebricksException {
super(id,adecl, itemType, dataSourceType);
}
}