All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.day.cq.wcm.undo.UndoConfigService Maven / Gradle / Ivy

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 - 2024 Weber Informatics LLC | Privacy Policy