Add ability to have optional params 47/28147/1
authorVenkata Harish K Kajur <vk250x@att.com>
Mon, 15 Jan 2018 06:20:43 +0000 (01:20 -0500)
committerVenkata Harish K Kajur <vk250x@att.com>
Mon, 15 Jan 2018 06:21:12 +0000 (01:21 -0500)
Issue-ID: AAI-651
Change-Id: I4b70aff0d7b683f6b31fe6eeaba14e8eaeee5463
Signed-off-by: Venkata Harish K Kajur <vk250x@att.com>
aai-core/src/main/java/org/onap/aai/query/builder/MissingOptionalParameter.java [new file with mode: 0644]
aai-core/src/main/java/org/onap/aai/query/builder/QueryBuilder.java

diff --git a/aai-core/src/main/java/org/onap/aai/query/builder/MissingOptionalParameter.java b/aai-core/src/main/java/org/onap/aai/query/builder/MissingOptionalParameter.java
new file mode 100644 (file)
index 0000000..b2d3205
--- /dev/null
@@ -0,0 +1,34 @@
+package org.onap.aai.query.builder;
+
+/*-
+ * ============LICENSE_START=======================================================
+ * org.onap.aai
+ * ================================================================================
+ * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=========================================================
+ */
+
+public class MissingOptionalParameter {
+
+           private MissingOptionalParameter() {}
+
+           private static class Helper {
+               static final MissingOptionalParameter INSTANCE = new MissingOptionalParameter();
+           }
+
+           public static MissingOptionalParameter getInstance() {
+               return Helper.INSTANCE;
+           }
+       }
index 5f91a44..f5d4787 100644 (file)
@@ -384,5 +384,9 @@ public abstract class QueryBuilder<E> implements Iterator<E> {
 
        public abstract List<E> toList();
        
+       public QueryBuilder<Vertex> getVerticesByProperty(String key, MissingOptionalParameter value) {
+               return (QueryBuilder<Vertex>) this;
+       }
+
                
 }