/** * The contents of this file are subject to the license and copyright * detailed in the LICENSE and NOTICE files at the root of the source * tree and available online at * * http://www.dspace.org/license/ */ package org.dspace.app.itemupdate; import java.sql.SQLException; import org.dspace.content.Bitstream; import org.dspace.content.Bundle; /** * Filter all bitstreams in the ORIGINAL bundle * Also delete all derivative bitstreams, i.e. * all bitstreams in the TEXT and THUMBNAIL bundles */ public class OriginalBitstreamFilter extends BitstreamFilterByBundleName { public OriginalBitstreamFilter() { //empty } /** * Tests bitstreams for containment in an ORIGINAL bundle * * @return true if the bitstream is in the ORIGINAL bundle * * @throws BitstreamFilterException */ public boolean accept(Bitstream bitstream) throws BitstreamFilterException { try { Bundle[] bundles = bitstream.getBundles(); for (Bundle b : bundles) { if (b.getName().equals("ORIGINAL")) { return true; } } } catch(SQLException e) { throw new BitstreamFilterException(e); } return false; } }