summaryrefslogtreecommitdiffstats
path: root/readme.md
diff options
context:
space:
mode:
authorVenkata Harish K Kajur <vk250x@att.com>2017-05-09 18:18:21 -0400
committerVenkata Harish K Kajur <vk250x@att.com>2017-05-09 18:19:11 -0400
commit8944883589f74a9b1887469dbdba008e442edb20 (patch)
tree86a7c08217c69280cd11980bba2ee0ee6461df69 /readme.md
parentae588b6cb80b8223e75705840ba43e70f2cb1fce (diff)
Initial commit with all the necessary files
Change-Id: I2760ca1e2c661028be946a4335d07b1b7671a4b4 Signed-off-by: Venkata Harish K Kajur <vk250x@att.com>
Diffstat (limited to 'readme.md')
-rw-r--r--readme.md23
1 files changed, 23 insertions, 0 deletions
diff --git a/readme.md b/readme.md
new file mode 100644
index 00000000..b1a44446
--- /dev/null
+++ b/readme.md
@@ -0,0 +1,23 @@
+# OpenECOMP AAI-Common
+
+---
+---
+
+# Introduction
+
+OpenECOMP AAI-Common is a collection of common utility modules used by the other OpenECOMP AAI components (AAI-Resources and AAI-Traversal). These utilities include aai-schema, which contains the schema oxm and xsd files; aai-annotations, which enables the annotations on the schema files; and aai-core, which includes various java packages used by all AAI microservices. AAI-Resources and AAI-Traversal are already configured to pull these dependencies using maven. For more information on AAI-Resources and AAI-Traversal, please see the readme.md files in their respective repositories. This readme only covers AAI-Common.
+
+# Compiling AAI-Common
+
+Each module of AAI-Common can be compiled easily with a `mvn clean install -DskipTests`. To compile all of them at once, run this command at the top level of aai-common; to do so for a specific module, run it in that module's subdirectory. Integration tests are started by omitting the skipTests flag `mvn clean install`. Again, this can be done for all the submodules at once or for any one individually.
+
+# Logging
+
+EELF framework is used for **specific logs** (audit, metric and error logs). They are tracking inter component logs (request and response) and allow to follow a complete flow through the AAI subsystem
+
+Each microservice (AAI-Resources and AAI-Traversal) keeps its own logging directories. Please see their specific readmes for more information.
+
+# Testing AAI-Common Functionalities
+There are JUnit tests for aai-core and aai-annotations. Changes to the schema must be tested in the context of the AAI-Resources microservice via the REST interface. Please see the AAI-Resources readme for details on how to test via the REST API.
+
+