class DBundle

This class wraps an org.dspace.content.Bitstream object

Public Class Methods

find(id) click to toggle source

returns nil or the org.dspace.content.Bundle object with the given id

id must be an integer

# File lib/dspace/dbundle.rb, line 11
def self.find(id)
  java_import org.dspace.content.Bundle;
  return Bundle.find(DSpace.context, id)
end