diff options
author | Dan Timoney <dtimoney@att.com> | 2019-07-30 12:36:55 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-07-30 12:36:55 +0000 |
commit | e36886f42ab75ad5bef4c5b988be836e63691a32 (patch) | |
tree | 683aa74cfbfd830249ea2cdec95e0e2c0c813834 /aai-service/provider/src | |
parent | 46d8e0dbfcf79ba2cce564b74e03e8db2c26ab14 (diff) | |
parent | 1dcea8a9c28ee6c2a1cbb786ad5d85070b4d2d8d (diff) |
Merge "Add "@Override" annotation above method signature"
Diffstat (limited to 'aai-service/provider/src')
-rwxr-xr-x | aai-service/provider/src/main/java/org/onap/ccsdk/sli/adaptors/aai/CustomQueryRequest.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/aai-service/provider/src/main/java/org/onap/ccsdk/sli/adaptors/aai/CustomQueryRequest.java b/aai-service/provider/src/main/java/org/onap/ccsdk/sli/adaptors/aai/CustomQueryRequest.java index 89228865..a99e6d5e 100755 --- a/aai-service/provider/src/main/java/org/onap/ccsdk/sli/adaptors/aai/CustomQueryRequest.java +++ b/aai-service/provider/src/main/java/org/onap/ccsdk/sli/adaptors/aai/CustomQueryRequest.java @@ -5,6 +5,7 @@ * Copyright (C) 2017 AT&T Intellectual Property. All rights * reserved. * Modifications Copyright (C) 2018 IBM. + * Modifications Copyright (C) 2019 IBM. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -118,7 +119,8 @@ public class CustomQueryRequest extends AAIRequest { return requestUrl; } - + + @Override public AAIDatum jsonStringToObject(String jsonData) throws IOException { if(jsonData == null) { return null; |