1:修改配置下发及停启用接口的逻辑
2:完成公共组域配置新增和修改功能
This commit is contained in:
@@ -417,10 +417,6 @@ public class ServiceAndRDBIndexReal {
|
||||
public static void setMaatToValveMap(Map<Integer, Map<String, String[]>> maatToValveMap) {
|
||||
ServiceAndRDBIndexReal.maatToValveMap = maatToValveMap;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public static Map<Integer, Map<String, String[]>> getMaatToWebFocusMap() {
|
||||
return maatToWebFocusMap;
|
||||
@@ -430,8 +426,6 @@ public class ServiceAndRDBIndexReal {
|
||||
ServiceAndRDBIndexReal.maatToWebFocusMap = maatToWebFocusMap;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public static Map<Integer, String> getUnMaatSercieNameMap() {
|
||||
return unMaatSercieNameMap;
|
||||
}
|
||||
@@ -439,27 +433,4 @@ public class ServiceAndRDBIndexReal {
|
||||
public static void setUnMaatSercieNameMap(Map<Integer, String> unMaatSercieNameMap) {
|
||||
ServiceAndRDBIndexReal.unMaatSercieNameMap = unMaatSercieNameMap;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the serviceGroupReuseMap
|
||||
*/
|
||||
public static Map<String, List<String>> getGroupReuseRegionMap() {
|
||||
Map<String, List<String>> groupReuseRegionMap = new HashMap<String, List<String>>();
|
||||
Iterator iterator = serviceGroupReuseMap.keySet().iterator();
|
||||
while (iterator.hasNext()) {
|
||||
Map<String, List<String>> map = serviceGroupReuseMap.get(Integer.valueOf(iterator.next().toString()));
|
||||
Iterator mapIterator = map.keySet().iterator();
|
||||
while (mapIterator.hasNext()) {
|
||||
String regionName = mapIterator.next().toString();
|
||||
if (!groupReuseRegionMap.containsKey(regionName)) {
|
||||
List<String> list = new ArrayList<String>();
|
||||
list.addAll(map.get(regionName));
|
||||
groupReuseRegionMap.put(regionName, list);
|
||||
} else {
|
||||
groupReuseRegionMap.get(regionName).addAll(map.get(regionName));
|
||||
}
|
||||
}
|
||||
}
|
||||
return groupReuseRegionMap;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user