/** * 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.content.service; import org.dspace.authorize.AuthorizeException; import org.dspace.authorize.ResourcePolicy; import org.dspace.content.Bitstream; import org.dspace.content.Bundle; import org.dspace.content.Collection; import org.dspace.content.Item; import org.dspace.core.Context; import java.io.IOException; import java.sql.SQLException; import java.util.List; import java.util.UUID; /** * Service interface class for the Bundle object. * The implementation of this class is responsible for all business logic calls for the Bundle object and is autowired by spring * * @author kevinvandevelde at atmire.com */ public interface BundleService extends DSpaceObjectService<Bundle>, DSpaceObjectLegacySupportService<Bundle> { /** * Create a new bundle, with a new ID and link it to the provided item * * @param context * DSpace context object * @param item DSpace item * @param name bundle name * @return the newly created bundle * @throws AuthorizeException if authorization error * @throws SQLException if database error */ public Bundle create(Context context, Item item, String name) throws SQLException, AuthorizeException; public Bitstream getBitstreamByName(Bundle bundle, String name); /** * Add an existing bitstream to this bundle * * @param context DSpace Context * @param bundle the bitstream bundle * @param bitstream * the bitstream to add * @throws AuthorizeException if authorization error * @throws SQLException if database error */ public void addBitstream(Context context, Bundle bundle, Bitstream bitstream) throws SQLException, AuthorizeException; /** * Remove a bitstream from this bundle - the bitstream is only deleted if * this was the last reference to it * <p> * If the bitstream in question is the primary bitstream recorded for the * bundle the primary bitstream field is unset in order to free the * bitstream from the foreign key constraint so that the * <code>cleanup</code> process can run normally. * * @param context DSpace Context * @param bundle the bitstream bundle * @param bitstream * the bitstream to remove * @throws IOException if IO error * @throws AuthorizeException if authorization error * @throws SQLException if database error */ public void removeBitstream(Context context, Bundle bundle, Bitstream bitstream) throws AuthorizeException, SQLException, IOException; /** * remove all policies on the bundle and its contents, and replace them with * the DEFAULT_BITSTREAM_READ policies belonging to the collection. * * @param context DSpace Context * @param bundle the bitstream bundle * @param collection * Collection * @throws SQLException * if an SQL error or if no default policies found. It's a bit * draconian, but default policies must be enforced. * @throws AuthorizeException if authorization error */ public void inheritCollectionDefaultPolicies(Context context, Bundle bundle, Collection collection) throws java.sql.SQLException, AuthorizeException; /** * remove all of the policies for the bundle and bitstream contents and replace * them with a new list of policies * * @param context DSpace Context * @param bundle the bitstream bundle * @param newpolicies - * this will be all of the new policies for the bundle and * bitstream contents * @throws SQLException if database error * @throws AuthorizeException if authorization error */ public void replaceAllBitstreamPolicies(Context context, Bundle bundle, List<ResourcePolicy> newpolicies) throws SQLException, AuthorizeException; public List<ResourcePolicy> getBitstreamPolicies(Context context, Bundle bundle) throws SQLException; public List<ResourcePolicy> getBundlePolicies(Context context, Bundle bundle) throws SQLException; /** * Changes bitstream order according to the array * @param context DSpace Context * @param bundle the bitstream bundle * @param bitstreamIds the identifiers in the order they are to be set * @throws SQLException when an SQL error has occurred (querying DSpace) * @throws AuthorizeException If the user can't make the changes */ public void setOrder(Context context, Bundle bundle, UUID bitstreamIds[]) throws AuthorizeException, SQLException; int countTotal(Context context) throws SQLException; }