+++ /dev/null
-#This is where all your application intercept strategies must be configured. AJSC reads this property file and adds
-#the list of intercepts specified here to the camel context. This can be useful for accessing every exchange object transferred from/to
-#each endpoint in the request/response flow and can allow for more precise debugging and/or processing of the exchange. 
-
-#e.g. 
-#intercepts=org.openecomp.aai.ajsc_aai.JaxrsEchoService,packagename.class1name,packagename.class2name
 
 aai.tools.password=AAI
 
 aai.server.url.base=https://localhost:8443/aai/
-aai.server.url=https://localhost:8443/aai/v10/
+aai.server.url=https://localhost:8443/aai/v11/
 aai.global.callback.url=https://localhost:8443/aai/
 
 aai.auth.cspcookies_on=false
 aai.rsync.remote.user=aaiadmin
 aai.rsync.enabled=y
 
-aai.notification.current.version=v10
+aai.notification.current.version=v11
 aai.notificationEvent.default.status=UNPROCESSED
 aai.notificationEvent.default.eventType=AAI-EVENT
 aai.notificationEvent.default.domain=devINT1
 aai.notificationEvent.default.sourceName=aai
 aai.notificationEvent.default.sequenceNumber=0
 aai.notificationEvent.default.severity=NORMAL
-aai.notificationEvent.default.version=v10
+aai.notificationEvent.default.version=v11
 # This one lets us enable/disable resource-version checking on updates/deletes
 aai.resourceversion.enableflag=true
 aai.logging.maxStackTraceEntries=10
-aai.default.api.version=v10
+aai.default.api.version=v11
 
 # Used by Model-processing code
 aai.model.delete.sleep.per.vtx.msec=500
 
         </plugin>
       </plugins>
     </reporting>
-</project>
+</project>
\ No newline at end of file
 
 import com.google.gson.JsonObject;
 import com.google.gson.JsonParser;
 
-@Path("{version: v9|v1[0]}/query")
+@Path("{version: v9|v1[01]}/query")
 public class QueryConsumer extends RESTAPI {
        
        /** The introspector factory type. */
 
  *
  */
 
-@Path("/{version: v2|v[789]|v1[0]|latest}/search")
+@Path("/{version: v2|v[789]|v1[01]|latest}/search")
 public class SearchProvider extends RESTAPI {
        
        protected static String authPolicyFunctionName = "search";
 
        public UEBNotification(Loader loader) {
                events = new ArrayList<>();
                currentVersionLoader = LoaderFactory.createLoaderForVersion(loader.getModelType(), AAIProperties.LATEST);
-               notificationVersion = Version.valueOf(AAIConfig.get("aai.notification.current.version","v10"));
+               notificationVersion = Version.valueOf(AAIConfig.get("aai.notification.current.version","v11"));
        }
        
        
 
 aai.dbmodel.filename=ex5.json
 
 aai.server.url.base=https://localhost:8446/aai/
-aai.server.url=https://localhost:8446/aai/v10/
+aai.server.url=https://localhost:8446/aai/v11/
 
 aai.truststore.filename=aai_keystore
 aai.truststore.passwd.x=
 aai.rsync.remote.user=aaiadmin
 aai.rsync.enabled=y
 
-aai.notification.current.version=v10
+aai.notification.current.version=v11
 aai.notificationEvent.default.status=UNPROCESSED
 aai.notificationEvent.default.eventType=AAI-EVENT
 aai.notificationEvent.default.domain=devINT1
 # This one lets us enable/disable resource-version checking on updates/deletes
 aai.resourceversion.enableflag=true
 aai.logging.maxStackTraceEntries=10
-aai.default.api.version=v10
+aai.default.api.version=v11