* @param type The type of the message.
* @throws ApsSystemException
*/
protected void removeNotifierConfig(String typeCode) throws ApsSystemException {
try {
MessageNotifierConfigDOM configDOM = new MessageNotifierConfigDOM();
Map<String, MessageTypeNotifierConfig> configMap = this.getNotifierConfigMap();
configMap.remove(typeCode);
String xml = configDOM.createConfigXml(configMap);
ConfigInterface configManager = this.getConfigManager();
configManager.updateConfigItem(JpwebdynamicformSystemConstants.MESSAGE_NOTIFIER_CONFIG_ITEM, xml);
} catch (Throwable t) {
ApsSystemUtils.logThrowable(t, this, "removeNotifierConfig");
this.loadNotifierConfig();