diff --git a/distro/changelog.xml b/distro/changelog.xml index 3ef8dd6..1143b33 100644 --- a/distro/changelog.xml +++ b/distro/changelog.xml @@ -1,7 +1,10 @@ - + + Fixed import due to gcube model refactoring + + Using resource-regsitry v2 apis #11950 diff --git a/pom.xml b/pom.xml index fe8f802..f36f960 100644 --- a/pom.xml +++ b/pom.xml @@ -9,7 +9,7 @@ org.gcube.smartgears.handlers resource-registry-handlers - 1.2.0-SNAPSHOT + 1.3.0-SNAPSHOT Resource Registry Handler Smartgears Handler to publish HostingNode and EService on Resource Registry diff --git a/src/main/java/org/gcube/smartgears/handler/resourceregistry/EServiceManager.java b/src/main/java/org/gcube/smartgears/handler/resourceregistry/EServiceManager.java index cfc0005..e11aeb8 100644 --- a/src/main/java/org/gcube/smartgears/handler/resourceregistry/EServiceManager.java +++ b/src/main/java/org/gcube/smartgears/handler/resourceregistry/EServiceManager.java @@ -27,12 +27,10 @@ import org.gcube.common.events.Observes; import org.gcube.common.scope.api.ScopeProvider; import org.gcube.informationsystem.model.impl.embedded.HeaderImpl; import org.gcube.informationsystem.model.impl.embedded.PropagationConstraintImpl; -import org.gcube.informationsystem.model.impl.embedded.ValueSchemaImpl; import org.gcube.informationsystem.model.impl.relation.ConsistsOfImpl; import org.gcube.informationsystem.model.impl.relation.IsIdentifiedByImpl; import org.gcube.informationsystem.model.reference.embedded.Header; import org.gcube.informationsystem.model.reference.embedded.PropagationConstraint; -import org.gcube.informationsystem.model.reference.embedded.ValueSchema; import org.gcube.informationsystem.model.reference.embedded.PropagationConstraint.AddConstraint; import org.gcube.informationsystem.model.reference.embedded.PropagationConstraint.RemoveConstraint; import org.gcube.informationsystem.model.reference.entity.Resource; @@ -48,11 +46,13 @@ import org.gcube.informationsystem.resourceregistry.publisher.ResourceRegistryPu import org.gcube.resourcemanagement.model.impl.entity.facet.AccessPointFacetImpl; import org.gcube.resourcemanagement.model.impl.entity.facet.ServiceStateFacetImpl; import org.gcube.resourcemanagement.model.impl.entity.facet.SoftwareFacetImpl; +import org.gcube.resourcemanagement.model.impl.entity.properties.ValueSchemaImpl; import org.gcube.resourcemanagement.model.impl.entity.resource.EServiceImpl; import org.gcube.resourcemanagement.model.impl.relation.isrelatedto.ActivatesImpl; import org.gcube.resourcemanagement.model.reference.entity.facet.AccessPointFacet; import org.gcube.resourcemanagement.model.reference.entity.facet.ServiceStateFacet; import org.gcube.resourcemanagement.model.reference.entity.facet.SoftwareFacet; +import org.gcube.resourcemanagement.model.reference.entity.properties.ValueSchema; import org.gcube.resourcemanagement.model.reference.entity.resource.EService; import org.gcube.resourcemanagement.model.reference.entity.resource.HostingNode; import org.gcube.resourcemanagement.model.reference.relation.isrelatedto.Activates;