Package com.adobe.aemds.guide.themes
Class AFComponentCopyPostProcessor
- java.lang.Object
 - 
- com.adobe.aemds.guide.themes.AFComponentCopyPostProcessor
 
 
- 
- All Implemented Interfaces:
 SlingPostProcessor
@Service(SlingPostProcessor.class) public class AFComponentCopyPostProcessor extends java.lang.Object implements SlingPostProcessor
TheAFComponentCopyPostProcessorupdates cq:cssClass and cssStyle for the new component node created copying an existing node. 
- 
- 
Constructor Summary
Constructors Constructor Description AFComponentCopyPostProcessor() 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidprocess(SlingHttpServletRequest request, java.util.List<Modification> changes)Process the current request. 
 - 
 
- 
- 
Method Detail
- 
process
public void process(SlingHttpServletRequest request, java.util.List<Modification> changes) throws GuideException
Description copied from interface:SlingPostProcessorProcess the current request. The post processor can inspect the list of changes and perform additional changes. If the processor performs a change it should make the change and add aModificationobject to the changes list.- Specified by:
 processin interfaceSlingPostProcessor- Parameters:
 request- The current request.changes- The list of changes for this request.- Throws:
 GuideException- See Also:
 SlingPostProcessor.process(SlingHttpServletRequest, List)
 
 - 
 
 -