* Loades a user configuration from an InputSource.
* @param userConfigSource The input source to be processed.
* @throws FOrayException For errors processing the configuration.
*/
public void loadUserconfiguration(final InputSource userConfigSource) throws FOrayException {
final ConfigurationParser reader = new ConfigurationParser(this.sessionConfig, this.renderConfig,
userConfigSource);
reader.parseDocument();
}