Class EdlExportDataSet
- java.lang.Object
-
- org.kuali.rice.edl.impl.xml.export.EdlExportDataSet
-
public class EdlExportDataSet extends java.lang.ObjectA utility class for managing anExportDataSetcontaining EDocLite data. Provides a mechanism to convert instances of this class to a populatedExportDataSet.- Author:
- Kuali Rice Team (rice.collab@kuali.org)
- See Also:
ExportDataSet
-
-
Field Summary
Fields Modifier and Type Field Description static javax.xml.namespace.QNameEDOCLITES
-
Constructor Summary
Constructors Constructor Description EdlExportDataSet()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description org.kuali.rice.core.api.impex.ExportDataSetcreateExportDataSet()Converts this data set to a standardExportDataSet, populating it with the data from this data set.static EdlExportDataSetfromExportDataSet(org.kuali.rice.core.api.impex.ExportDataSet exportDataSet)A static utility for creating aEdlExportDataSetfrom anExportDataSet.java.util.List<EDocLiteAssociation>getEdocLites()voidpopulateExportDataSet(org.kuali.rice.core.api.impex.ExportDataSet exportDataSet)Populates the givenExportDataSetwith the data from this data set.
-
-
-
Method Detail
-
getEdocLites
public java.util.List<EDocLiteAssociation> getEdocLites()
-
populateExportDataSet
public void populateExportDataSet(org.kuali.rice.core.api.impex.ExportDataSet exportDataSet)
Populates the givenExportDataSetwith the data from this data set.- Parameters:
exportDataSet- the data set to populate the data into
-
createExportDataSet
public org.kuali.rice.core.api.impex.ExportDataSet createExportDataSet()
Converts this data set to a standardExportDataSet, populating it with the data from this data set.- Returns:
- the populated ExportDataSet
-
fromExportDataSet
public static EdlExportDataSet fromExportDataSet(org.kuali.rice.core.api.impex.ExportDataSet exportDataSet)
A static utility for creating aEdlExportDataSetfrom anExportDataSet. This method will only populate the returned EdocLite data set with EdocLite data from the given export data set. The rest of the data in the given export data set will be ignored.- Parameters:
exportDataSet- the ExportDataSet to pull EdocLite data from- Returns:
- a StyleExportDataSet with any EdocLite data from the given exportDataSet populated
-
-