Release version 1.1.0 of sli/plugins
[ccsdk/sli/plugins.git] / README.md
1 This source repository contains the code for the CCSDK plugins.
2
3 To compile this code:
4
5 1. Make sure your local Maven settings file ($HOME/.m2/settings.xml) contains references to the ONAP repositories and OpenDaylight repositories.  See example-settings.xml for an example.
6
7 2. To compile, run "mvn clean install".
8
9
10 PropertyNode:
11 1) Takes any file then parses it and puts it to the context memory for Directed Graphs access.
12 2) Various parameters it takes:
13
14     public String fileName; //Name of the file to put to properties
15
16     public String contextPrefix; //Any prefix to add for your keys in the Properties context 
17
18     public Set<String> listNameList;//only applies to XML based file parsing, you can use this to exclude a specific tree to be put to context. 
19
20     public boolean fileBasedParsing;//enable to do a file based parsing, currently supports JSON and XML.