Omaha #3955 Fix error in TopoDatabase when GFE domain is changed

Change-Id: I0afbffb8b4e0ece19281f62c593b270cb138048c

Former-commit-id: 1689d4433750ac388e9fe1f43b15545a7c398cbe
This commit is contained in:
Ron Anderson 2015-03-17 16:32:42 -05:00
parent 1dcbfb01d7
commit a4abe3ecc4
2 changed files with 7 additions and 6 deletions

View file

@ -1116,7 +1116,7 @@ public class IFPGridDatabase extends GridDatabase {
* @param parmStorageInfoUser
* @return ServerResponse containing status only
*/
protected ServerResponse<?> applyProjectionAndDomainChanges(
private ServerResponse<?> applyProjectionAndDomainChanges(
Map<String, ParmStorageInfo> parmStorageInfoUser) {
ServerResponse<?> sr = new ServerResponse<Object>();
@ -1167,7 +1167,7 @@ public class IFPGridDatabase extends GridDatabase {
return sr;
}
private ServerResponse<?> remapAllGrids(
protected ServerResponse<?> remapAllGrids(
Map<String, ParmStorageInfo> parmStorageInfoUser) {
ServerResponse<?> sr = new ServerResponse<Object>();
@ -1347,7 +1347,7 @@ public class IFPGridDatabase extends GridDatabase {
*
* @return ServerResponse containing the user configuration
*/
protected ServerResponse<Map<String, ParmStorageInfo>> getUserConfiguration() {
private ServerResponse<Map<String, ParmStorageInfo>> getUserConfiguration() {
ServerResponse<Map<String, ParmStorageInfo>> sr = new ServerResponse<Map<String, ParmStorageInfo>>();
Map<String, ParmStorageInfo> parmStorageInfoUser = new HashMap<String, ParmStorageInfo>();

View file

@ -75,11 +75,12 @@ public class TopoDatabase extends IFPGridDatabase {
/*
* (non-Javadoc)
*
* @see com.raytheon.edex.plugin.gfe.server.database.IFPGridDatabase#
* applyProjectionAndDomainChanges(java.util.Map)
* @see
* com.raytheon.edex.plugin.gfe.server.database.IFPGridDatabase#remapAllGrids
* (java.util.Map)
*/
@Override
protected ServerResponse<?> applyProjectionAndDomainChanges(
protected ServerResponse<?> remapAllGrids(
Map<String, ParmStorageInfo> parmStorageInfoUser) {
// Domain changes are handled differently for TopoDatabse.
// See TopoDatbaseManager.createDiskCache()