Class ExtractDAOJpaImpl
- java.lang.Object
-
- org.kuali.rice.edl.impl.extract.dao.impl.ExtractDAOJpaImpl
-
- All Implemented Interfaces:
ExtractDAO
public class ExtractDAOJpaImpl extends java.lang.Object implements ExtractDAO
-
-
Constructor Summary
Constructors Constructor Description ExtractDAOJpaImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddeleteDump(java.lang.String documentId)Removes aDumpfrom the underlying datasource for the given document id.org.kuali.rice.krad.data.DataObjectServicegetDataObjectService()Returns theDataObjectServiceDumpgetDumpByDocumentId(java.lang.String docId)Returns aDumpfor the given document idjava.util.List<Fields>getFieldsByDocumentId(java.lang.String docId)Returns allFieldswith the given document id.DumpsaveDump(Dump dump)Persists the given item to the underlying datasource.FieldssaveField(Fields field)Persists the given item to the underlying datasource.voidsetDataObjectService(org.kuali.rice.krad.data.DataObjectService dataObjectService)
-
-
-
Method Detail
-
getDumpByDocumentId
public Dump getDumpByDocumentId(java.lang.String docId)
Returns aDumpfor the given document id- Specified by:
getDumpByDocumentIdin interfaceExtractDAO- Parameters:
docId- the document id- Returns:
- a
Dump
-
getFieldsByDocumentId
public java.util.List<Fields> getFieldsByDocumentId(java.lang.String docId)
Returns allFieldswith the given document id.- Specified by:
getFieldsByDocumentIdin interfaceExtractDAO- Parameters:
docId- the document id.- Returns:
- a
ListofFields
-
saveDump
public Dump saveDump(Dump dump)
Persists the given item to the underlying datasource.- Specified by:
saveDumpin interfaceExtractDAO- Parameters:
dump- the item to save- Returns:
- the saved
Dump
-
saveField
public Fields saveField(Fields field)
Persists the given item to the underlying datasource.- Specified by:
saveFieldin interfaceExtractDAO- Parameters:
field- the item to save- Returns:
- the saved
Fields
-
deleteDump
public void deleteDump(java.lang.String documentId)
Removes aDumpfrom the underlying datasource for the given document id.- Specified by:
deleteDumpin interfaceExtractDAO- Parameters:
documentId- the document id
-
getDataObjectService
public org.kuali.rice.krad.data.DataObjectService getDataObjectService()
Returns theDataObjectService- Returns:
- the
DataObjectService
-
setDataObjectService
public void setDataObjectService(org.kuali.rice.krad.data.DataObjectService dataObjectService)
- See Also:
getDataObjectService()
-
-