org.kuali.rice.edl.impl.extract.dao
Interface ExtractDAO

All Known Implementing Classes:
ExtractDAOJpaImpl

public interface ExtractDAO


Method Summary
 void deleteDump(String documentId)
          Removes a Dump from the underlying datasource for the given document id.
 Dump getDumpByDocumentId(String documentId)
          Returns a Dump for the given document id
 List<Fields> getFieldsByDocumentId(String documentId)
          Returns all Fields with the given document id.
 Dump saveDump(Dump dump)
          Persists the given item to the underlying datasource.
 Fields saveField(Fields field)
          Persists the given item to the underlying datasource.
 

Method Detail

getDumpByDocumentId

Dump getDumpByDocumentId(String documentId)
Returns a Dump for the given document id

Parameters:
documentId - the document id
Returns:
a Dump

getFieldsByDocumentId

List<Fields> getFieldsByDocumentId(String documentId)
Returns all Fields with the given document id.

Parameters:
documentId - the document id.
Returns:
a List of Fields

saveDump

Dump saveDump(Dump dump)
Persists the given item to the underlying datasource.

Parameters:
dump - the item to save
Returns:
the saved Dump

deleteDump

void deleteDump(String documentId)
Removes a Dump from the underlying datasource for the given document id.

Parameters:
documentId - the document id

saveField

Fields saveField(Fields field)
Persists the given item to the underlying datasource.

Parameters:
field - the item to save
Returns:
the saved Fields


Copyright © 2005–2014 The Kuali Foundation. All rights reserved.