blob: 42644b24f65f90489a912435f55e476162e4fee7 [file] [log] [blame]
package org.apache.oodt.cas.curation.ingest;
import java.util.List;
/**
* Class to represent input for ingest
* @author starchmd
*/
public class InputStruct {
//public String id;
public List<InputStruct.InputEntry> entries;
public static class InputEntry {
public String pname;
public String file;
public long size;
public long timestamp;
public Exception error = null;
}
}