Patch for SF bug #2016130 checksum checker can not retrieve very large bitstream

git-svn-id: http://scm.dspace.org/svn/repo/branches/dspace-1_5_x@3332 9c30dcfa-912a-0410-8fc2-9e0234be79fd
This commit is contained in:
Stuart Lewis
2008-12-15 16:51:13 +00:00
parent fc3938ab18
commit 5761df3bcc
4 changed files with 11 additions and 9 deletions

View File

@@ -274,7 +274,7 @@ public final class BitstreamInfoDAO extends DAOSupport
if (rs.next())
{
info = new BitstreamInfo(rs.getBoolean("deleted"), rs
.getInt("store_number"), rs.getInt("size_bytes"), rs
.getInt("store_number"), rs.getLong("size_bytes"), rs
.getString("short_description"), rs
.getInt("bitstream_id"), rs
.getString("user_format_description"), rs
@@ -546,7 +546,7 @@ public final class BitstreamInfoDAO extends DAOSupport
/**
* Get the bitstream ids for a given collection
*
* @param itemId
* @param collectionId The id of the collection
* @return the list of bitstream ids for this item
*/
public List getCollectionBitstreams(int collectionId)
@@ -589,7 +589,7 @@ public final class BitstreamInfoDAO extends DAOSupport
/**
* Get the bitstream ids for a given community
*
* @param itemId
* @param communityId the community id
* @return the list of bitstream ids for this item
*/
public List getCommunityBitstreams(int communityId)