001/** 002 * The contents of this file are subject to the license and copyright 003 * detailed in the LICENSE and NOTICE files at the root of the source 004 * tree. 005 * 006 */ 007package org.fcrepo.migration; 008 009/** 010 * An interface representing a source of fedora 3 objects that can be 011 * accessed sequentially for processing. 012 * @author mdurbin 013 */ 014public interface ObjectSource extends Iterable<FedoraObjectProcessor> { 015 016}