Bug 2412: Fixed reading of JSON using new codecs.
[controller.git] / opendaylight / md-sal / sal-rest-connector / src / main / java / org / opendaylight / controller / sal / rest / impl / AbstractIdentifierAwareJaxRsProvider.java
index 978ae0d9c5205e528a0bee6de31702251fd180f4..b158cbc4ced612ef2833b9bd55baeb45dfa21234 100644 (file)
@@ -13,7 +13,7 @@ public class AbstractIdentifierAwareJaxRsProvider {
     private UriInfo uriInfo;
 
     protected final String getIdentifier() {
-        return uriInfo.getPathParameters().getFirst(RestconfConstants.IDENTIFIER);
+        return uriInfo.getPathParameters(false).getFirst(RestconfConstants.IDENTIFIER);
     }
 
     protected final Optional<InstanceIdentifierContext> getIdentifierWithSchema() {