Class ExtractDAOJpaImpl

  • All Implemented Interfaces:
    ExtractDAO

    public class ExtractDAOJpaImpl
    extends java.lang.Object
    implements ExtractDAO
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void deleteDump​(java.lang.String documentId)
      Removes a Dump from the underlying datasource for the given document id.
      org.kuali.rice.krad.data.DataObjectService getDataObjectService()
      Returns the DataObjectService
      Dump getDumpByDocumentId​(java.lang.String docId)
      Returns a Dump for the given document id
      java.util.List<Fields> getFieldsByDocumentId​(java.lang.String docId)
      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.
      void setDataObjectService​(org.kuali.rice.krad.data.DataObjectService dataObjectService)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • ExtractDAOJpaImpl

        public ExtractDAOJpaImpl()
    • Method Detail

      • getDumpByDocumentId

        public Dump getDumpByDocumentId​(java.lang.String docId)
        Returns a Dump for the given document id
        Specified by:
        getDumpByDocumentId in interface ExtractDAO
        Parameters:
        docId - the document id
        Returns:
        a Dump
      • getFieldsByDocumentId

        public java.util.List<Fields> getFieldsByDocumentId​(java.lang.String docId)
        Returns all Fields with the given document id.
        Specified by:
        getFieldsByDocumentId in interface ExtractDAO
        Parameters:
        docId - the document id.
        Returns:
        a List of Fields
      • saveDump

        public Dump saveDump​(Dump dump)
        Persists the given item to the underlying datasource.
        Specified by:
        saveDump in interface ExtractDAO
        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:
        saveField in interface ExtractDAO
        Parameters:
        field - the item to save
        Returns:
        the saved Fields
      • deleteDump

        public void deleteDump​(java.lang.String documentId)
        Removes a Dump from the underlying datasource for the given document id.
        Specified by:
        deleteDump in interface ExtractDAO
        Parameters:
        documentId - the document id
      • getDataObjectService

        public org.kuali.rice.krad.data.DataObjectService getDataObjectService()
        Returns the DataObjectService
        Returns:
        the DataObjectService
      • setDataObjectService

        public void setDataObjectService​(org.kuali.rice.krad.data.DataObjectService dataObjectService)
        See Also:
        getDataObjectService()