* @return removed DataSourceInformation instance
*/
public DataSourceInformation removeDataSourceInformation(String name) {
if (name == null || "".equals(name)) {
throw new SynapseCommonsException("Name of the datasource information instance to be" +
" removed is null", log);
}
DataSourceInformation information = dataSourceInformationMap.remove(name);
if (information == null) {
throw new SynapseCommonsException("There is no datasource information instance" +
" for given name :" + name, log);
}
if (assertListerNotNull()) {