b2722fd782ae43dd856217ae5d32b7eb7b0fb2a0
[policy/apex-pdp.git] /
1 /*-
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
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
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.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.apex.examples.myfirstpolicy;
22
23 import java.util.ArrayList;
24 import java.util.List;
25
26 import org.onap.policy.apex.core.engine.engine.EnEventListener;
27 import org.onap.policy.apex.core.engine.event.EnEvent;
28 import org.onap.policy.apex.core.infrastructure.threading.ThreadUtilities;
29
30 /**
31  * The listener interface for receiving SaleAuth events. The class that is interested in processing a SaleAuth event
32  * implements this interface, and the object created with that class is registered with a component using the
33  * component's <code>addTestApexActionListener</code> method. When the testApexAction event occurs, that object's
34  * appropriate method is invoked.
35  *
36  * @author Liam Fallon (liam.fallon@ericsson.com)
37  */
38 public class TestSaleAuthListener implements EnEventListener {
39     // CHECKSTYLE:OFF: MagicNumber
40
41     private final List<EnEvent> resultEvents = new ArrayList<>();
42
43     private final String id;
44
45     /**
46      * Instantiates a new action listener.
47      *
48      * @param id the id
49      */
50     public TestSaleAuthListener(final String id) {
51         this.id = id;
52     }
53
54     /**
55      * Gets the result.
56      *
57      * @return the result
58      */
59     public EnEvent getResult() {
60         while (resultEvents.isEmpty()) {
61             ThreadUtilities.sleep(100);
62         }
63         return resultEvents.remove(0);
64     }
65
66     /*
67      * (non-Javadoc)
68      *
69      * @see
70      * org.onap.policy.apex.core.engine.engine.EnEventListener#onEnEvent(org.onap.policy.apex.core.engine.event.EnEvent)
71      */
72     @Override
73     public void onEnEvent(final EnEvent saleauthEvent) {
74         ThreadUtilities.sleep(100);
75
76         if (saleauthEvent != null) {
77             System.out.println("SaleAuth event from engine:" + saleauthEvent.getName());
78             resultEvents.add(saleauthEvent);
79         }
80     }
81
82     /**
83      * Gets the id.
84      *
85      * @return the id
86      */
87     public String getId() {
88         return id;
89     }
90 }