mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-15 22:13:08 +00:00
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:
@@ -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)
|
||||
|
Reference in New Issue
Block a user