Added support for context names included in header among UUIDs #22090
This commit is contained in:
parent
d683b703c5
commit
9fd1f7db7b
|
@ -5,7 +5,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|||
## [v2.1.0-SNAPSHOT]
|
||||
|
||||
- Aligned model with the model defined in Luca Frosini PhD dissertation [#20367]
|
||||
|
||||
- Added support for context names included in header among UUIDs [#22090]
|
||||
|
||||
## [v2.0.0]
|
||||
|
||||
|
|
|
@ -123,7 +123,7 @@ public class EServiceHandler extends ApplicationLifecycleHandler {
|
|||
}
|
||||
}
|
||||
|
||||
Set<UUID> resourceContextsUUID = eServiceManager.getContextsUUID();
|
||||
Set<UUID> resourceContextsUUID = eServiceManager.getContextsUUID().keySet();
|
||||
removeResourceFromOldContexts(startContextsUUID, resourceContextsUUID);
|
||||
|
||||
} catch (Throwable e) {
|
||||
|
|
|
@ -126,7 +126,7 @@ public class HostingNodeHandler extends ContainerHandler {
|
|||
}
|
||||
}
|
||||
|
||||
Set<UUID> resourceContextsUUID = hostingNodeManager.getContextsUUID();
|
||||
Set<UUID> resourceContextsUUID = hostingNodeManager.getContextsUUID().keySet();
|
||||
removeResourceFromOldContexts(startContextsUUID, resourceContextsUUID);
|
||||
|
||||
} catch (Throwable e) {
|
||||
|
|
|
@ -3,7 +3,7 @@ package org.gcube.smartgears.handler.resourceregistry.resourcemanager;
|
|||
import java.net.URI;
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
import java.util.Set;
|
||||
import java.util.Map;
|
||||
import java.util.UUID;
|
||||
|
||||
import javax.servlet.ServletRegistration;
|
||||
|
@ -277,7 +277,7 @@ public class EServiceManager {
|
|||
}
|
||||
}
|
||||
|
||||
public Set<UUID> getContextsUUID() throws Exception {
|
||||
public Map<UUID,String> getContextsUUID() throws Exception {
|
||||
return resourceRegistryPublisher.getResourceContexts(eService);
|
||||
}
|
||||
|
||||
|
|
|
@ -16,7 +16,6 @@ import java.util.Calendar;
|
|||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
import java.util.UUID;
|
||||
import java.util.regex.Matcher;
|
||||
import java.util.regex.Pattern;
|
||||
|
@ -623,7 +622,7 @@ public class HostingNodeManager {
|
|||
return cpuFacets;
|
||||
}
|
||||
|
||||
public Set<UUID> getContextsUUID() throws Exception {
|
||||
public Map<UUID,String> getContextsUUID() throws Exception {
|
||||
return resourceRegistryPublisher.getResourceContexts(hostingNode);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue