Update the aai-common with the latest code
[aai/aai-common.git] / aai-core / src / main / java / org / openecomp / aai / parsers / uri / URIValidate.java
index 4f7a7c1..6eed095 100644 (file)
@@ -24,23 +24,10 @@ import javax.ws.rs.core.MultivaluedMap;
 
 import org.openecomp.aai.exceptions.AAIException;
 import org.openecomp.aai.introspection.Introspector;
+import org.openecomp.aai.serialization.db.EdgeType;
 
 class URIValidate implements Parsable {
 
-       @Override
-       public void processObject(Introspector obj, MultivaluedMap<String, String> uriKeys) throws AAIException {
-               //NO-OP
-               //just want to make sure this URI has valid tokens
-       }
-
-       @Override
-       public void processContainer(Introspector obj, MultivaluedMap<String, String> uriKeys, boolean isFinalContainer)
-                       throws AAIException {
-               //NO-OP
-               //just want to make sure this URI has valid tokens
-
-       }
-
        @Override
        public void processNamespace(Introspector obj) {
                //NO-OP
@@ -59,4 +46,18 @@ class URIValidate implements Parsable {
                return true;
        }
 
+       @Override
+       public void processObject(Introspector obj, EdgeType type, MultivaluedMap<String, String> uriKeys)
+                       throws AAIException {
+               //NO-OP
+               //just want to make sure this URI has valid tokens
+       }
+
+       @Override
+       public void processContainer(Introspector obj, EdgeType type, MultivaluedMap<String, String> uriKeys,
+                       boolean isFinalContainer) throws AAIException {
+               //NO-OP
+               //just want to make sure this URI has valid tokens
+       }
+
 }