Class EdlDataExporter

  • All Implemented Interfaces:
    org.kuali.rice.krad.bo.Exporter

    public class EdlDataExporter
    extends java.lang.Object
    implements org.kuali.rice.krad.bo.Exporter
    An implementation of the Exporter class which facilitates exporting of EDocLite data from the GUI.
    Author:
    Kuali Rice Team (rice.collab@kuali.org)
    See Also:
    ExportDataSet
    • Constructor Summary

      Constructors 
      Constructor Description
      EdlDataExporter()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      protected org.kuali.rice.core.api.impex.ExportDataSet buildExportDataSet​(java.lang.Class<?> dataObjectClass, java.util.List<? extends java.lang.Object> dataObjects)
      Builds the ExportDataSet based on the BusinessObjects passed in.
      void export​(java.lang.Class<?> dataObjectClass, java.util.List<? extends java.lang.Object> dataObjects, java.lang.String exportFormat, java.io.OutputStream outputStream)
      This overridden method ...
      java.util.List<java.lang.String> getSupportedFormats​(java.lang.Class<?> dataObjectClass)  
      • Methods inherited from class java.lang.Object

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

      • EdlDataExporter

        public EdlDataExporter()
    • Method Detail

      • getSupportedFormats

        public java.util.List<java.lang.String> getSupportedFormats​(java.lang.Class<?> dataObjectClass)
        Specified by:
        getSupportedFormats in interface org.kuali.rice.krad.bo.Exporter
      • buildExportDataSet

        protected org.kuali.rice.core.api.impex.ExportDataSet buildExportDataSet​(java.lang.Class<?> dataObjectClass,
                                                                                 java.util.List<? extends java.lang.Object> dataObjects)
        Builds the ExportDataSet based on the BusinessObjects passed in.
      • export

        public void export​(java.lang.Class<?> dataObjectClass,
                           java.util.List<? extends java.lang.Object> dataObjects,
                           java.lang.String exportFormat,
                           java.io.OutputStream outputStream)
                    throws java.io.IOException,
                           org.kuali.rice.krad.exception.ExportNotSupportedException
        This overridden method ...
        Specified by:
        export in interface org.kuali.rice.krad.bo.Exporter
        Throws:
        java.io.IOException
        org.kuali.rice.krad.exception.ExportNotSupportedException
        See Also:
        Exporter.export(java.lang.Class, java.util.List, java.lang.String, java.io.OutputStream)