Move apex policy editor to policy-gui 45/110245/4
authorliamfallon <liam.fallon@est.tech>
Thu, 16 Jul 2020 09:24:08 +0000 (10:24 +0100)
committerliamfallon <liam.fallon@est.tech>
Fri, 17 Jul 2020 13:46:26 +0000 (14:46 +0100)
commit2de08a64e959788f288d82cd4410fee9424a11bc
tree93d90b4de43e6e52c7059e842cf8c5ba4d10ecca
parentee41415476b6ea1775a2f689eecb8713abf81f0c
Move apex policy editor to policy-gui

This review moves the code for the apex policy editor from the apex repo
to the GUI repo.

The docker part of the build will be moved in the next review because it
is intertwined with the other two legacy apex GUIs and needs to be
disentangled.

Subsequent reviews on the apex repo will remove this code from there.

Issue-ID: POLICY-2621
Change-Id: Ib9a43f463b839201656208a48ab48869a19f963a
Signed-off-by: liamfallon <liam.fallon@est.tech>
516 files changed:
gui-editors/gui-editor-apex/pom.xml [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/assembly/resources.xml [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/java/org/onap/policy/gui/editors/apex/rest/ApexEditor.java [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/java/org/onap/policy/gui/editors/apex/rest/ApexEditorException.java [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/java/org/onap/policy/gui/editors/apex/rest/ApexEditorMain.java [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/java/org/onap/policy/gui/editors/apex/rest/ApexEditorParameterException.java [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/java/org/onap/policy/gui/editors/apex/rest/ApexEditorParameterParser.java [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/java/org/onap/policy/gui/editors/apex/rest/ApexEditorParameters.java [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/java/org/onap/policy/gui/editors/apex/rest/handling/ApexEditorRestResource.java [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/java/org/onap/policy/gui/editors/apex/rest/handling/ContextAlbumHandler.java [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/java/org/onap/policy/gui/editors/apex/rest/handling/ContextSchemaHandler.java [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/java/org/onap/policy/gui/editors/apex/rest/handling/EventHandler.java [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/java/org/onap/policy/gui/editors/apex/rest/handling/KeyInfoHandler.java [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/java/org/onap/policy/gui/editors/apex/rest/handling/ModelHandler.java [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/java/org/onap/policy/gui/editors/apex/rest/handling/PolicyHandler.java [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/java/org/onap/policy/gui/editors/apex/rest/handling/RestCommand.java [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/java/org/onap/policy/gui/editors/apex/rest/handling/RestCommandHandler.java [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/java/org/onap/policy/gui/editors/apex/rest/handling/RestCommandType.java [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/java/org/onap/policy/gui/editors/apex/rest/handling/RestSession.java [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/java/org/onap/policy/gui/editors/apex/rest/handling/RestSessionHandler.java [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/java/org/onap/policy/gui/editors/apex/rest/handling/RestUtils.java [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/java/org/onap/policy/gui/editors/apex/rest/handling/TaskHandler.java [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/java/org/onap/policy/gui/editors/apex/rest/handling/bean/BeanBase.java [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/java/org/onap/policy/gui/editors/apex/rest/handling/bean/BeanContextAlbum.java [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/java/org/onap/policy/gui/editors/apex/rest/handling/bean/BeanContextSchema.java [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/java/org/onap/policy/gui/editors/apex/rest/handling/bean/BeanEvent.java [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/java/org/onap/policy/gui/editors/apex/rest/handling/bean/BeanField.java [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/java/org/onap/policy/gui/editors/apex/rest/handling/bean/BeanKeyRef.java [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/java/org/onap/policy/gui/editors/apex/rest/handling/bean/BeanLogic.java [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/java/org/onap/policy/gui/editors/apex/rest/handling/bean/BeanModel.java [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/java/org/onap/policy/gui/editors/apex/rest/handling/bean/BeanPolicy.java [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/java/org/onap/policy/gui/editors/apex/rest/handling/bean/BeanState.java [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/java/org/onap/policy/gui/editors/apex/rest/handling/bean/BeanStateOutput.java [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/java/org/onap/policy/gui/editors/apex/rest/handling/bean/BeanStateTaskRef.java [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/java/org/onap/policy/gui/editors/apex/rest/handling/bean/BeanTask.java [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/java/org/onap/policy/gui/editors/apex/rest/handling/bean/BeanTaskParameter.java [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/templates/PeriodicEventTemplate.json [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/WEB-INF/web.xml [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/close.html [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/css/close.css [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/css/contextMenu.css [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/css/dropdownList.css [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/css/fileMenu.css [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/css/interfaceAssets.css [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/css/showhideTextarea.css [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/css/styles.css [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/images/Apex.png [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/images/logo_onap.png [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/index.html [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/ApexAjax.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/ApexContextAlbumEditForm.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/ApexContextAlbumTab.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/ApexContextSchemaEditForm.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/ApexContextSchemaTab.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/ApexEventEditForm.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/ApexEventTab.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/ApexFiles.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/ApexFormUtils.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/ApexKeyInformationTab.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/ApexMain.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/ApexModelHandling.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/ApexNewModelForm.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/ApexPageControl.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/ApexPolicyEditForm.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/ApexPolicyEditForm_State.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/ApexPolicyTab.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/ApexResultForm.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/ApexTable.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/ApexTaskEditForm.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/ApexTaskTab.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/ApexUtils.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/contextMenu.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/dropdownList.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/edit_area_full.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/images/autocompletion.gif [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/images/close.gif [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/images/fullscreen.gif [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/images/go_to_line.gif [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/images/help.gif [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/images/highlight.gif [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/images/load.gif [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/images/move.gif [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/images/newdocument.gif [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/images/opacity.png [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/images/processing.gif [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/images/redo.gif [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/images/reset_highlight.gif [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/images/save.gif [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/images/search.gif [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/images/smooth_selection.gif [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/images/spacer.gif [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/images/statusbar_resize.gif [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/images/undo.gif [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/images/word_wrap.gif [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/langs/bg.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/langs/cs.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/langs/de.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/langs/dk.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/langs/en.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/langs/eo.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/langs/es.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/langs/fi.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/langs/fr.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/langs/hr.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/langs/it.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/langs/ja.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/langs/mk.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/langs/nl.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/langs/pl.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/langs/pt.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/langs/ru.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/langs/sk.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/langs/zh.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/license_apache.txt [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/reg_syntax/basic.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/reg_syntax/brainfuck.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/reg_syntax/c.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/reg_syntax/coldfusion.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/reg_syntax/cpp.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/reg_syntax/css.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/reg_syntax/html.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/reg_syntax/java.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/reg_syntax/js.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/reg_syntax/pas.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/reg_syntax/perl.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/reg_syntax/php.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/reg_syntax/python.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/reg_syntax/robotstxt.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/reg_syntax/ruby.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/reg_syntax/sql.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/reg_syntax/tsql.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/reg_syntax/vb.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/edit_area/reg_syntax/xml.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/fileMenu.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/jquery-ui-1.12.1/AUTHORS.txt [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/jquery-ui-1.12.1/LICENSE.txt [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/jquery-ui-1.12.1/external/jquery/jquery.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/jquery-ui-1.12.1/images/ui-icons_444444_256x240.png [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/jquery-ui-1.12.1/images/ui-icons_555555_256x240.png [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/jquery-ui-1.12.1/images/ui-icons_777620_256x240.png [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/jquery-ui-1.12.1/images/ui-icons_777777_256x240.png [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/jquery-ui-1.12.1/images/ui-icons_cc0000_256x240.png [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/jquery-ui-1.12.1/images/ui-icons_ffffff_256x240.png [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/jquery-ui-1.12.1/index.html [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/jquery-ui-1.12.1/jquery-ui.css [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/jquery-ui-1.12.1/jquery-ui.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/jquery-ui-1.12.1/jquery-ui.min.css [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/jquery-ui-1.12.1/jquery-ui.min.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/jquery-ui-1.12.1/jquery-ui.structure.css [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/jquery-ui-1.12.1/jquery-ui.structure.min.css [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/jquery-ui-1.12.1/jquery-ui.theme.css [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/jquery-ui-1.12.1/jquery-ui.theme.min.css [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/jquery-ui-1.12.1/package.json [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/showhideElement.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/js/showhideTextarea.js [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/10px/ArrowDoubleLeftSmall_black_10px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/10px/ArrowDoubleRightSmall_black_10px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/10px/ArrowDownSmall_black_10px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/10px/ArrowLeftSmall_black_10px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/10px/ArrowRightSmall_black_10px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/10px/ArrowUpSmall_black_10px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/ArrowDoubleLeftSmall_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/ArrowDoubleRightSmall_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/ArrowDownSmall_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/ArrowDownSmall_blue_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/ArrowDownSmall_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/ArrowDown_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/ArrowDown_blue_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/ArrowDown_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/ArrowLeftSmall_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/ArrowLeftSmall_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/ArrowLeft_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/ArrowLeft_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/ArrowRightSmall_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/ArrowRightSmall_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/ArrowRight_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/ArrowRight_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/ArrowUpSmall_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/ArrowUp_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/ArrowUp_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/BSCFunction_Yellow_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/BSCFunction_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/BSC_Yellow_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/BSC_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/Cancelled_Black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/CommandLineInterface_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/CommandLineInterface_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/Comment_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/Link_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/RBS_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/RBS_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/SyncError_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/Syncd_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/Syncing_Animated_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/Syncing_Static_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/WindowMaximize_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/WindowMinimize_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/X_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/X_blue_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/X_green_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/X_orange_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/X_paleBlue_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/X_red_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/X_yellow_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/accessSettings_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/accessSettings_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/access_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/access_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/acknowledgeAlarm.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/acknowledgeAlarm_white.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/activate_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/activate_white.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/activity_16px_black.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/addToFolder_black.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/addToFolder_white.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/add_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/add_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/advanced_search_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/advanced_search_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/alarmCleared_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/alarmCleared_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/alarmCritical_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/alarmCritical_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/alarmHeartbeat_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/alarmIndeterminate_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/alarmIndeterminate_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/alarmMajor_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/alarmMajor_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/alarmMinor_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/alarmMinor_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/alarmOtherGrouping_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/alarmUnacknowledged.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/alarmUnacknowledged_white.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/alarmUnspecified_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/alarmWarning_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/alarmWarning_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/alignCenter_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/alignCenter_white.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/alignLeft_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/alignLeft_white.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/alignRight_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/alignRight_white.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/arrowUpSmall_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/attach_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/attach_white.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/baseStation.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/cabinet_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/calendar_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/calendar_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/cellAdjacent_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/cellExternal_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/cell_gray_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/cell_green_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/cell_red_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/charging_black.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/charging_white.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/circleArrowDown_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/circleArrowDown_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/circleArrowLeft_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/circleArrowLeft_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/circleArrowRight_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/circleArrowRight_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/circleArrowUp_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/circleArrowUp_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/circleCaretDown_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/circleCaretDown_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/circleCaretLeft_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/circleCaretLeft_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/circleCaretRight_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/circleCaretRight_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/circleCaretUp_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/circleCaretUp_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/clearAlarm.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/clearAlarm_white.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/clock_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/clock_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/close_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/comment_white.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/connected_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/connectionError_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/controllingNode.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/copy_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/copy_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/coreSubscriber_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/core_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/cut_black.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/cut_white.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/database_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/deactivate_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/deactivate_white.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/delete_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/delete_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/deprecated_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/detach_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/detach_white.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/dialogInfo_blue.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/dialogInfo_white.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/disconnected_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/document_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/download_black.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/download_white.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/download_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/draft.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/duplicate_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/duplicate_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/edit_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/edit_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/error_red_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/expand_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/export_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/export_white.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/externalApp_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/externalApp_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/eyeLine_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/eyeLine_white.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/eye_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/eye_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/fastForward_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/fastRewind_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/filter_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/filter_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/filters_off.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/filters_on.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/folderClosed_black.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/folderClosed_white.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/folder_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/folder_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/ftpServerFunction_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/ftpServer_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/fullscreenMinimise_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/fullscreen_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/gatewayFunction_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/grabHandle_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/grabHandle_white.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/grid3X3_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/grid3x3_white.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/grid4X4_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/grid4x4_white.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/gridView_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/gridView_white.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/help_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/help_white.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/import_black.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/import_export.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/import_white.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/infoMsgIndicator_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/info_black.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/info_white.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/invalid_icon.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/jumpTo_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/lock_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/lock_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/login.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/logout_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/mailRead_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/mailRead_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/mail_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/mail_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/managedFunction_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/managedGroup_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/managementNode_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/menu_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/menu_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/microwave.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/minimiseFullscreen_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/minus_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/mo.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/move.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/multi-sort.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/multi-sort_white.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/multiSelect_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/multiSelect_white.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/networkElement_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/networkElement_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/network_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/newFile_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/newFile_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/newStatus_blue_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/newStatus_green_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/note_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/note_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/obsolete_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/pause_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/play_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/plus_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/print_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/print_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/refresh_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/refresh_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/remove.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/resume_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/routeSwitch.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/rowCollapsed_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/rowExpanded_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/rowView_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/rowView_white.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/rxi_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/save_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/save_white.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/search_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/search_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/security_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/security_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/settings_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/settings_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/share_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/share_white.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/simple_green_tick.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/simple_tick.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/siteManager_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/site_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/sort.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/sort_white.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/star_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/star_outline_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/star_outline_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/star_outline_yellow_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/star_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/star_yellow_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/stop_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/subnetwork.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/suspend_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/switch.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/switchBetween_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/switchBetween_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/switchFunction_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/tableView_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/tableView_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/technicianPresent_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/terminal_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/tick_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/tick_green_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/tip_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/tip_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/topology_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/undo_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/undo_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/unlock_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/unlock_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/upload_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/user_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/user_white_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/valid_icon.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/warningShield_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/warningShield_white.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/warning_orange_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/warning_white.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/16px/warning_yellow_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/28px/error_red_28px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/28px/information_blue_28px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/28px/tick_green_28px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/28px/warning_yellow_28px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/contextMenu/menu_black_16px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/controls/close_exit_icon.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/controls/collapse_icon.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/controls/down_arrow.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/controls/down_arrow_hit.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/controls/expand_icon.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/controls/info-black-16x16.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/controls/left_arrow.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/controls/left_arrow_.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/controls/left_arrow_hit.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/controls/magnify_black.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/controls/next_arrows_hit.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/controls/previous_arrows_hit.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/controls/right_arrow.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/controls/right_arrow_.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/controls/right_arrow_hit.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/controls/save_black.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/controls/up_arrow.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/controls/up_arrow_hit.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/dialogs/confirmation_icon.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/dialogs/error_icon.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/dialogs/information_icon.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/dialogs/warning_icon.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/drilldownPath/arrow.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/form/checkbox_tick.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/form/checkbox_tick_black.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/form/checkbox_tick_green.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/form/checkbox_triple.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/form/checkbox_triple_black.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/form/checkbox_triple_green.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/form/invalid_icon.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/form/radio_tick_black.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/form/radio_tick_green.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/form/valid_icon.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/other/ArrowDoubleLeft_black_10x8px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/other/ArrowDoubleRight_black_10x8px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/other/ArrowDown_black_8x5px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/other/ArrowLeft_black_5x8px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/other/ArrowRight_black_5x8px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/other/ArrowUp_black_8x5px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/other/errorSmall_red_10px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/other/tick_black_10x8px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/other/tick_green_10x8px.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/pagination/pagination_end.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/pagination/pagination_next.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/pagination/pagination_previous.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/pagination/pagination_start.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/systemBar/help_black.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/systemBar/logout_black.svg [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/whitelabel/button.png [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/whitelabel/pagecustomization.PNG [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/whitelabel/systembar.png [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/whitelabel/table.png [new file with mode: 0644]
gui-editors/gui-editor-apex/src/main/resources/webapp/resources/whitelabel/typography.png [new file with mode: 0644]
gui-editors/gui-editor-apex/src/test/java/org/onap/policy/gui/editors/apex/rest/ApexEditorStartupTest.java [new file with mode: 0644]
gui-editors/gui-editor-apex/src/test/java/org/onap/policy/gui/editors/apex/rest/ExceptionsTest.java [new file with mode: 0644]
gui-editors/gui-editor-apex/src/test/java/org/onap/policy/gui/editors/apex/rest/RestInterfaceTest.java [new file with mode: 0644]
gui-editors/gui-editor-apex/src/test/java/org/onap/policy/gui/editors/apex/rest/handling/ApexEditorRestResourceTest.java [new file with mode: 0644]
gui-editors/gui-editor-apex/src/test/java/org/onap/policy/gui/editors/apex/rest/handling/bean/BeansTest.java [new file with mode: 0644]
gui-editors/gui-editor-apex/src/test/java/org/onap/policy/gui/editors/apex/rest/handling/bean/DummyBeanBase.java [new file with mode: 0644]
gui-editors/gui-editor-apex/src/test/resources/models/PolicyModel.json [new file with mode: 0644]
gui-editors/pom.xml [new file with mode: 0644]
gui-pdp-monitoring/pom.xml
pom.xml