2 * ============LICENSE_START=======================================================
3 * Copyright (C) 2016-2018 Ericsson. All rights reserved.
4 * ================================================================================
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
9 * http://www.apache.org/licenses/LICENSE-2.0
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
17 * SPDX-License-Identifier: Apache-2.0
18 * ============LICENSE_END=========================================================
21 package org.onap.policy.apex.apps.uservice.test.adapt.jms;
23 import java.util.HashMap;
24 import java.util.Hashtable;
26 import java.util.Properties;
28 import javax.naming.Binding;
29 import javax.naming.Context;
30 import javax.naming.Name;
31 import javax.naming.NameClassPair;
32 import javax.naming.NameParser;
33 import javax.naming.NamingEnumeration;
34 import javax.naming.NamingException;
36 import org.apache.activemq.command.ActiveMQTopic;
37 import org.onap.policy.apex.model.basicmodel.concepts.ApexRuntimeException;
40 * @author Liam Fallon (liam.fallon@ericsson.com)
42 public class TestContext implements Context {
44 private Properties testProperties;
46 public TestContext() {
48 testProperties = new Properties();
50 final Map<String, Object> params = new HashMap<String, Object>();
51 params.put("host", "localhost");
52 params.put("port", "5445");
53 testProperties.put("ConnectionFactory", TestJMS2JMS.connectionFactory);
54 testProperties.put("jms/topic/apexIn", new ActiveMQTopic("jms/topic/apexIn"));
55 testProperties.put("jms/topic/apexOut", new ActiveMQTopic("jms/topic/apexOut"));
56 } catch (final Exception e) {
58 throw new ApexRuntimeException("Context initiation failed", e);
63 public Object lookup(final Name name) throws NamingException {
68 public Object lookup(final String name) throws NamingException {
69 return testProperties.get(name);
73 public void bind(final Name name, final Object obj) throws NamingException {}
76 public void bind(final String name, final Object obj) throws NamingException {}
79 public void rebind(final Name name, final Object obj) throws NamingException {}
82 public void rebind(final String name, final Object obj) throws NamingException {}
85 public void unbind(final Name name) throws NamingException {}
88 public void unbind(final String name) throws NamingException {}
91 public void rename(final Name oldName, final Name newName) throws NamingException {}
94 public void rename(final String oldName, final String newName) throws NamingException {}
97 public NamingEnumeration<NameClassPair> list(final Name name) throws NamingException {
102 public NamingEnumeration<NameClassPair> list(final String name) throws NamingException {
107 public NamingEnumeration<Binding> listBindings(final Name name) throws NamingException {
112 public NamingEnumeration<Binding> listBindings(final String name) throws NamingException {
117 public void destroySubcontext(final Name name) throws NamingException {}
120 public void destroySubcontext(final String name) throws NamingException {}
123 public Context createSubcontext(final Name name) throws NamingException {
128 public Context createSubcontext(final String name) throws NamingException {
133 public Object lookupLink(final Name name) throws NamingException {
138 public Object lookupLink(final String name) throws NamingException {
143 public NameParser getNameParser(final Name name) throws NamingException {
148 public NameParser getNameParser(final String name) throws NamingException {
153 public Name composeName(final Name name, final Name prefix) throws NamingException {
158 public String composeName(final String name, final String prefix) throws NamingException {
163 public Object addToEnvironment(final String propName, final Object propVal) throws NamingException {
168 public Object removeFromEnvironment(final String propName) throws NamingException {
173 public Hashtable<?, ?> getEnvironment() throws NamingException {
178 public void close() throws NamingException {}
181 public String getNameInNamespace() throws NamingException {