200201202203204205206
* Add the data of interest for the given object. * * @throws ResourceIndexException */ public void addObject(DigitalObject obj) throws ResourceIndexException { m_ri.addObject(new SimpleDOReader(null, null, null, null, null, obj)); }
83848586878889
*/ public synchronized DOReader getReader(boolean cachedObjectRequired, Context context, String pid) throws ServerException { DigitalObject obj = getObject(pid); return new SimpleDOReader(null, this, null, null, null, obj); }
288289290291292293294
null, obj); } protected DOReader getDOReader(DigitalObject obj) throws Exception { return new SimpleDOReader(null, null, null, null, null, obj); }