com.day.cq.wcm.undo.UndoConfigService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aem-sdk-api Show documentation
Show all versions of aem-sdk-api Show documentation
The Adobe Experience Manager SDK
package com.day.cq.wcm.undo;
import java.io.IOException;
import java.io.Writer;
/**
* Provides undo configuration.
*/
public interface UndoConfigService {
/**
* Returns a config value.
*
* @param name The name of the config
* @param type The type of the config
* @return The config value
*/
T getConfig(String name, Class type);
/**
* Writes config data as required by the clientside implementation.
*
* @param out The writer
* @throws IOException if the client config could not be written to the client
*/
void writeClientConfig(Writer out) throws IOException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy