Package org.ametys.odf.catalog
Class CoursePartHolderUpdater
- java.lang.Object
-
- org.ametys.runtime.plugin.component.AbstractLogEnabled
-
- org.ametys.odf.catalog.CoursePartHolderUpdater
-
- All Implemented Interfaces:
CopyCatalogUpdater,LogEnabled,Serviceable
public class CoursePartHolderUpdater extends AbstractLogEnabled implements CopyCatalogUpdater, Serviceable
Copy updater to update the course holder on aCoursePart.
-
-
Field Summary
Fields Modifier and Type Field Description private AmetysObjectResolver_resolver
-
Constructor Summary
Constructors Constructor Description CoursePartHolderUpdater()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidservice(ServiceManager manager)voidupdateContent(String initialCatalogName, String newCatalogName, Program initialProgram, Program createdProgram)Update content during copy of a catalog.voidupdateContents(String initialCatalogName, String newCatalogName, Map<String,String> copiedPrograms, Map<String,String> copiedSubPrograms, Map<String,String> copiedContainers, Map<String,String> copiedCourseLists, Map<String,String> copiedCourses, Map<String,String> copiedCourseParts)Update contents after the full copy of a catalog.-
Methods inherited from class org.ametys.runtime.plugin.component.AbstractLogEnabled
getLogger, setLogger
-
-
-
-
Field Detail
-
_resolver
private AmetysObjectResolver _resolver
-
-
Constructor Detail
-
CoursePartHolderUpdater
public CoursePartHolderUpdater()
-
-
Method Detail
-
service
public void service(ServiceManager manager) throws ServiceException
- Specified by:
servicein interfaceServiceable- Throws:
ServiceException
-
updateContent
public void updateContent(String initialCatalogName, String newCatalogName, Program initialProgram, Program createdProgram)
Description copied from interface:CopyCatalogUpdaterUpdate content during copy of a catalog. Implements this method when you do not need to wait for the full copy of the catalog.- Specified by:
updateContentin interfaceCopyCatalogUpdater- Parameters:
initialCatalogName- the name of initial catalognewCatalogName- the name of new cataloginitialProgram- the initial programcreatedProgram- the created program
-
updateContents
public void updateContents(String initialCatalogName, String newCatalogName, Map<String,String> copiedPrograms, Map<String,String> copiedSubPrograms, Map<String,String> copiedContainers, Map<String,String> copiedCourseLists, Map<String,String> copiedCourses, Map<String,String> copiedCourseParts)
Description copied from interface:CopyCatalogUpdaterUpdate contents after the full copy of a catalog. Implements this method when you need to do some stuff when all contents have been copied.- Specified by:
updateContentsin interfaceCopyCatalogUpdater- Parameters:
initialCatalogName- the name of initial catalognewCatalogName- the name of new catalogcopiedPrograms- the id of initial programs with their copied contentcopiedSubPrograms- the id of initial subprograms with their copied contentcopiedContainers- the id of initial containers with their copied contentcopiedCourseLists- the id of initial course lists with their copied contentcopiedCourses- the id of initial courses with their copied contentcopiedCourseParts- the id of initial course parts with their copied content
-
-