diff options
author | liamfallon <liam.fallon@est.tech> | 2020-11-11 11:13:34 +0000 |
---|---|---|
committer | Jim Hahn <jrh3@att.com> | 2020-11-12 14:46:33 +0000 |
commit | 84d0f41eba6884cc8e75e920e766abd785c06f2b (patch) | |
tree | 7ecb11941117bcf9ac122f4fea50d1b03838987a /examples/examples-onap-vcpe | |
parent | a95972dea262712bddd8de354ab8b7fe25b5d853 (diff) |
Add method to allow JSON conversion to execution context for logic
The Rhino JSON.Stringify() method does not work well. This patch allows
the user to call schema specific or generic JSON conversion using the
schema handling in Apex or not as the developer chooses.
Added a single argument stringify2Json() method.
Issue-ID: POLICY-2463
Change-Id: I9ec1e0dea2f6cd153b73b2eace63d8806674884d
Signed-off-by: liamfallon <liam.fallon@est.tech>
(cherry picked from commit 90bc246ffec30f7d97474d772d8bad73715cdd45)
Diffstat (limited to 'examples/examples-onap-vcpe')
-rw-r--r-- | examples/examples-onap-vcpe/src/test/resources/logback-test.xml | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/examples/examples-onap-vcpe/src/test/resources/logback-test.xml b/examples/examples-onap-vcpe/src/test/resources/logback-test.xml new file mode 100644 index 000000000..b3a202ced --- /dev/null +++ b/examples/examples-onap-vcpe/src/test/resources/logback-test.xml @@ -0,0 +1,39 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ============LICENSE_START======================================================= + Copyright (C) 2016-2018 Ericsson. All rights reserved. + ================================================================================ + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + SPDX-License-Identifier: Apache-2.0 + ============LICENSE_END========================================================= +--> + +<configuration> + + <contextName>Apex</contextName> + <statusListener class="ch.qos.logback.core.status.OnConsoleStatusListener" /> + <property name="LOG_DIR" value="${java.io.tmpdir}/apex_logging/" /> + + <!-- USE FOR STD OUT ONLY --> + <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> + <encoder> + <Pattern>%d %contextName [%t] %level %logger{36} - %msg%n</Pattern> + </encoder> + </appender> + + <root level="TRACE"> + <appender-ref ref="STDOUT" /> + </root> + +</configuration> |