Initial search service commit 05/3905/2
authorDaniel Silverthorn <daniel.silverthorn@amdocs.com>
Thu, 4 May 2017 17:08:13 +0000 (13:08 -0400)
committerDaniel Silverthorn <daniel.silverthorn@amdocs.com>
Tue, 9 May 2017 16:05:00 +0000 (12:05 -0400)
commitc75a08a749718fc5ef25f8c2f826939be657c0bf
treee2a2e29f8ebc54f6e2eeac6df63d8ca2189d39a0
parent30b899f10fb4fe638a973061bad6f8ba87003494
Initial search service commit

Changing common logging dep

Change-Id: I454697a9df0ee63f43d7b7d2a3818fe2d9b7bcf2
Signed-off-by: Daniel Silverthorn <daniel.silverthorn@amdocs.com>
138 files changed:
.gitreview [new file with mode: 0644]
License.txt [new file with mode: 0644]
README.md [new file with mode: 0644]
ajsc-shared-config/README.txt [new file with mode: 0644]
ajsc-shared-config/etc/basic-logback_root_logger_level_off.xml [new file with mode: 0644]
ajsc-shared-config/etc/logback.xml [new file with mode: 0644]
ajsc-shared-config/etc/spm2.jks [new file with mode: 0644]
antBuild/build.xml [new file with mode: 0644]
bundleconfig-local/README.txt [new file with mode: 0644]
bundleconfig-local/RELEASE_NOTES.txt [new file with mode: 0644]
bundleconfig-local/etc/appprops/PostProcessorInterceptors.properties [new file with mode: 0644]
bundleconfig-local/etc/appprops/PreProcessorInterceptors.properties [new file with mode: 0644]
bundleconfig-local/etc/appprops/app-intercepts.properties [new file with mode: 0644]
bundleconfig-local/etc/appprops/methodMapper.properties [new file with mode: 0644]
bundleconfig-local/etc/sysprops/sys-props.properties [new file with mode: 0644]
pom.xml [new file with mode: 0644]
services/README.txt [new file with mode: 0644]
src/main/ajsc/search-data-service_v1/search-data-service/v1/conf/jaxrsBeans.groovy [new file with mode: 0644]
src/main/ajsc/search-data-service_v1/search-data-service/v1/conf/searchBeans.groovy [new file with mode: 0644]
src/main/ajsc/search-data-service_v1/search-data-service/v1/docs/README.txt [new file with mode: 0644]
src/main/ajsc/search-data-service_v1/search-data-service/v1/lib/README.txt [new file with mode: 0644]
src/main/ajsc/search-data-service_v1/search-data-service/v1/props/module.props [new file with mode: 0644]
src/main/ajsc/search-data-service_v1/search-data-service/v1/routes/errorMessage.route [new file with mode: 0644]
src/main/ajsc/search-data-service_v1/search-data-service/v1/routes/jaxrsExample.route [new file with mode: 0644]
src/main/ajsc/search-data-service_v1/search-data-service/v1/routes/searchEngine.route [new file with mode: 0644]
src/main/assemble/ajsc_module_assembly.xml [new file with mode: 0644]
src/main/assemble/ajsc_props_assembly.xml [new file with mode: 0644]
src/main/assemble/ajsc_runtime_assembly.xml [new file with mode: 0644]
src/main/bin/start.sh [new file with mode: 0644]
src/main/config/ajsc-chef.jks [new file with mode: 0644]
src/main/config/ajsc-jetty.xml [new file with mode: 0644]
src/main/config/ajsc-override-web.xml [new file with mode: 0644]
src/main/config/ajscJetty.jks [new file with mode: 0644]
src/main/config/jul-redirect.properties [new file with mode: 0644]
src/main/config/keyfile [new file with mode: 0644]
src/main/config/runner-web.xml [new file with mode: 0644]
src/main/docker/Dockerfile [new file with mode: 0644]
src/main/java/org/openecomp/sa/auth/SearchDbServiceAuth.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/auth/SearchDbServiceAuthCore.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/rest/AnalysisConfiguration.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/rest/AnalyzerApi.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/rest/ApiUtils.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/rest/BulkApi.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/rest/BulkMetaData.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/rest/BulkOperation.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/rest/BulkRequest.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/rest/Document.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/rest/DocumentApi.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/rest/IndexApi.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/rest/SearchServiceApi.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/searchdbabstraction/JaxrsEchoService.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/searchdbabstraction/JaxrsUserService.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/searchdbabstraction/elasticsearch/config/ElasticSearchConfig.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/searchdbabstraction/elasticsearch/dao/DocumentStoreDataEntity.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/searchdbabstraction/elasticsearch/dao/DocumentStoreDataEntityImpl.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/searchdbabstraction/elasticsearch/dao/DocumentStoreInterface.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/searchdbabstraction/elasticsearch/dao/ElasticSearchBulkOperationResult.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/searchdbabstraction/elasticsearch/dao/ElasticSearchCause.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/searchdbabstraction/elasticsearch/dao/ElasticSearchError.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/searchdbabstraction/elasticsearch/dao/ElasticSearchHttpController.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/searchdbabstraction/elasticsearch/dao/ElasticSearchOperationStatus.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/searchdbabstraction/elasticsearch/dao/ElasticSearchResultItem.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/searchdbabstraction/elasticsearch/dao/ElasticSearchShardStatus.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/searchdbabstraction/elasticsearch/exception/DocumentStoreOperationException.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/searchdbabstraction/entity/AggregationBucket.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/searchdbabstraction/entity/AggregationResult.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/searchdbabstraction/entity/AggregationResults.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/searchdbabstraction/entity/Document.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/searchdbabstraction/entity/DocumentOperationResult.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/searchdbabstraction/entity/ErrorResult.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/searchdbabstraction/entity/OperationResult.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/searchdbabstraction/entity/SearchHit.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/searchdbabstraction/entity/SearchHits.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/searchdbabstraction/entity/SearchOperationResult.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/searchdbabstraction/logging/SearchDbMsgs.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/searchdbabstraction/searchapi/AbstractAggregation.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/searchdbabstraction/searchapi/Aggregation.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/searchdbabstraction/searchapi/AggregationStatement.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/searchdbabstraction/searchapi/DateHistogramAggregation.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/searchdbabstraction/searchapi/DateRange.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/searchdbabstraction/searchapi/DateRangeAggregation.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/searchdbabstraction/searchapi/Filter.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/searchdbabstraction/searchapi/GroupByAggregation.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/searchdbabstraction/searchapi/ParsedQuery.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/searchdbabstraction/searchapi/Query.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/searchdbabstraction/searchapi/QueryStatement.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/searchdbabstraction/searchapi/RangeQuery.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/searchdbabstraction/searchapi/SearchStatement.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/searchdbabstraction/searchapi/Sort.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/searchdbabstraction/searchapi/TermQuery.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/searchdbabstraction/service/SearchService.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/searchdbabstraction/util/AggregationParsingUtil.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/searchdbabstraction/util/DocumentSchemaUtil.java [new file with mode: 0644]
src/main/java/org/openecomp/sa/searchdbabstraction/util/SearchDbConstants.java [new file with mode: 0644]
src/main/resources/json/schema/analyzer.schema.json [new file with mode: 0644]
src/main/resources/json/schema/document-field.schema.json [new file with mode: 0644]
src/main/resources/json/schema/document.schema.json [new file with mode: 0644]
src/main/resources/json/schema/filter.schema.json [new file with mode: 0644]
src/main/resources/logging/SearchDbMsgs.properties [new file with mode: 0644]
src/main/runtime/context/__module.ajsc.namespace.name__#__module.ajsc.namespace.version__.context [new file with mode: 0644]
src/main/runtime/context/default#0.context [new file with mode: 0644]
src/main/runtime/deploymentPackage/__module.ajsc.namespace.name__#__module.ajsc.namespace.version__.json [new file with mode: 0644]
src/main/runtime/shiroRole/ajscadmin.json [new file with mode: 0644]
src/main/runtime/shiroRole/contextadmin#__module.ajsc.namespace.name__.json [new file with mode: 0644]
src/main/runtime/shiroRole/contextadmin#default.json [new file with mode: 0644]
src/main/runtime/shiroUser/ajsc.json [new file with mode: 0644]
src/main/runtime/shiroUserRole/ajsc#ajscadmin.json [new file with mode: 0644]
src/main/runtime/shiroUserRole/ajsc#contextadmin#__module.ajsc.namespace.name__.json [new file with mode: 0644]
src/main/runtime/shiroUserRole/ajsc#contextadmin#default.json [new file with mode: 0644]
src/test/java/org/openecomp/sa/rest/ApiUtilsTest.java [new file with mode: 0644]
src/test/java/org/openecomp/sa/rest/BulkApiTest.java [new file with mode: 0644]
src/test/java/org/openecomp/sa/rest/DocumentApiTest.java [new file with mode: 0644]
src/test/java/org/openecomp/sa/rest/DocumentSchemaTest.java [new file with mode: 0644]
src/test/java/org/openecomp/sa/rest/IndexApiTest.java [new file with mode: 0644]
src/test/java/org/openecomp/sa/rest/SearchServiceApiHarness.java [new file with mode: 0644]
src/test/java/org/openecomp/sa/rest/StubEsController.java [new file with mode: 0644]
src/test/java/org/openecomp/sa/rest/TestUtils.java [new file with mode: 0644]
src/test/java/org/openecomp/sa/searchdbabstraction/elasticsearch/dao/AggregationResponseParsingTest.java [new file with mode: 0644]
src/test/java/org/openecomp/sa/searchdbabstraction/elasticsearch/dao/ElasticSearchHttpControllerTest.java [new file with mode: 0644]
src/test/java/org/openecomp/sa/searchdbabstraction/searchapi/AggregationStatementTest.java [new file with mode: 0644]
src/test/java/org/openecomp/sa/searchdbabstraction/searchapi/AggregationTest.java [new file with mode: 0644]
src/test/java/org/openecomp/sa/searchdbabstraction/searchapi/DateHistogramAggregationTest.java [new file with mode: 0644]
src/test/java/org/openecomp/sa/searchdbabstraction/searchapi/DateRangeAggregationTest.java [new file with mode: 0644]
src/test/java/org/openecomp/sa/searchdbabstraction/searchapi/DateRangeTest.java [new file with mode: 0644]
src/test/java/org/openecomp/sa/searchdbabstraction/searchapi/FilterTest.java [new file with mode: 0644]
src/test/java/org/openecomp/sa/searchdbabstraction/searchapi/GroupByAggregationTest.java [new file with mode: 0644]
src/test/java/org/openecomp/sa/searchdbabstraction/searchapi/QueryTest.java [new file with mode: 0644]
src/test/java/org/openecomp/sa/searchdbabstraction/searchapi/SearchStatementTest.java [new file with mode: 0644]
src/test/java/org/openecomp/sa/searchdbabstraction/searchapi/SortTest.java [new file with mode: 0644]
src/test/resources/json/analysis-config.json [new file with mode: 0644]
src/test/resources/json/bulk-ops-invalid.json [new file with mode: 0644]
src/test/resources/json/bulk-ops-valid.json [new file with mode: 0644]
src/test/resources/json/filter-config.json [new file with mode: 0644]
src/test/resources/json/nested-document.json [new file with mode: 0644]
src/test/resources/json/queries/query-with-subrange.json [new file with mode: 0644]
src/test/resources/json/queries/simple-parsed-query.json [new file with mode: 0644]
src/test/resources/json/simpleDocument.json [new file with mode: 0644]
src/test/resources/json/tier-support-document.json [new file with mode: 0644]