aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGurjeet Bedi <gurjeetb@amdocs.com>2018-02-16 13:28:56 -0500
committerGurjeet Bedi <gurjeetb@amdocs.com>2018-02-20 19:40:40 +0000
commit620debc0558babef78fbd71fcafab4559abc57d3 (patch)
treedc9512bd22003c6878925a75857fe191ba8a0df0
parent4201bd18a0f676121f066670f82be124f9508657 (diff)
Revert change for passing params
Move logic to downstream to handle params Issue-ID: AAI-482 Change-Id: I25b1170447783fd753c83a619b00681cb4ef481f Signed-off-by: Gurjeet Bedi <gurjeetb@amdocs.com>
-rw-r--r--src/main/java/org/onap/crud/service/AbstractGraphDataService.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/org/onap/crud/service/AbstractGraphDataService.java b/src/main/java/org/onap/crud/service/AbstractGraphDataService.java
index 2a2df57..5a89220 100644
--- a/src/main/java/org/onap/crud/service/AbstractGraphDataService.java
+++ b/src/main/java/org/onap/crud/service/AbstractGraphDataService.java
@@ -67,7 +67,7 @@ public abstract class AbstractGraphDataService {
public String getVertex(String version, String id, String type, Map<String, String> queryParams) throws CrudException {
type = OxmModelValidator.resolveCollectionType(version, type);
Vertex vertex = daoForGet.getVertex(id, type, version, queryParams);
- List<Edge> edges = daoForGet.getVertexEdges(id, null); //Not passing parameters as backend doesnt support these queries
+ List<Edge> edges = daoForGet.getVertexEdges(id, queryParams);
return CrudResponseBuilder.buildGetVertexResponse(OxmModelValidator.validateOutgoingPayload(version, vertex), edges,
version);
}