a87f94201daba3cf4bcfcc4f67c4d1d6196049de
[policy/apex-pdp.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2016-2018 Ericsson. All rights reserved.
4  *  Modifications Copyright (C) 2019 Nordix Foundation.
5  * ================================================================================
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  * SPDX-License-Identifier: Apache-2.0
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.apex.service.engine.parameters.dummyclasses;
23
24 import java.util.Properties;
25
26 import org.onap.policy.apex.service.engine.event.ApexEventException;
27 import org.onap.policy.apex.service.engine.event.ApexEventProducer;
28 import org.onap.policy.apex.service.engine.event.PeeredReference;
29 import org.onap.policy.apex.service.parameters.eventhandler.EventHandlerParameters;
30 import org.onap.policy.apex.service.parameters.eventhandler.EventHandlerPeeredMode;
31 import org.slf4j.ext.XLogger;
32 import org.slf4j.ext.XLoggerFactory;
33
34 /**
35  * Dummy event producer parameters.
36  *
37  * @author John Keeney (john.keeney@ericsson.com)
38  */
39 public class SuperDooperEventProducer implements ApexEventProducer {
40
41     private static final XLogger LOGGER = XLoggerFactory.getXLogger(SuperDooperEventProducer.class);
42
43     private String name;
44
45     public SuperDooperEventProducer() {}
46
47     /**
48      * {@inheritDoc}.
49      */
50     @Override
51     public void init(final String name, final EventHandlerParameters producerParameters) throws ApexEventException {
52         this.name = name;
53     }
54
55     /**
56      * {@inheritDoc}.
57      */
58     @Override
59     public String getName() {
60         return name;
61     }
62
63     /**
64      * {@inheritDoc}.
65      */
66     @Override
67     public PeeredReference getPeeredReference(final EventHandlerPeeredMode peeredMode) {
68         return null;
69     }
70
71     /**
72      * {@inheritDoc}.
73      */
74     @Override
75     public void setPeeredReference(final EventHandlerPeeredMode peeredMode, final PeeredReference peeredReference) {}
76
77     /**
78      * {@inheritDoc}.
79      */
80     @Override
81     public void sendEvent(final long executionId, final Properties executionProperties, final String eventName,
82             final Object event) {
83         LOGGER.info("Sending Event: " + this.getClass().getName() + ":" + this.name + " ... event ("
84                 + eventName + ") : " + event);
85     }
86
87     /**
88      * {@inheritDoc}.
89      */
90     @Override
91     public void stop() {}
92 }