Changes for checkstyle 8.32
[policy/apex-pdp.git] / examples / examples-myfirstpolicy / src / test / java / org / onap / policy / apex / examples / myfirstpolicy / TestSaleAuthListener.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2016-2018 Ericsson. All rights reserved.
4  *  Modifications Copyright (C) 2020 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.examples.myfirstpolicy;
23
24 import static org.awaitility.Awaitility.await;
25
26 import java.util.ArrayList;
27 import java.util.List;
28 import java.util.concurrent.TimeUnit;
29 import org.onap.policy.apex.core.engine.engine.EnEventListener;
30 import org.onap.policy.apex.core.engine.event.EnEvent;
31
32 /**
33  * The listener interface for receiving SaleAuth events. The class that is interested in processing a SaleAuth event
34  * implements this interface, and the object created with that class is registered with a component using the
35  * component's <code>addTestApexActionListener</code> method. When the testApexAction event occurs, that object's
36  * appropriate method is invoked.
37  *
38  * @author Liam Fallon (liam.fallon@ericsson.com)
39  */
40 public class TestSaleAuthListener implements EnEventListener {
41     // CHECKSTYLE:OFF: MagicNumber
42
43     private final List<EnEvent> resultEvents = new ArrayList<>();
44
45     private final String id;
46
47     /**
48      * Instantiates a new action listener.
49      *
50      * @param id the id
51      */
52     public TestSaleAuthListener(final String id) {
53         this.id = id;
54     }
55
56     /**
57      * Gets the result.
58      *
59      * @return the result
60      */
61     public EnEvent getResult() {
62         await().atMost(200, TimeUnit.MILLISECONDS).until(() -> !resultEvents.isEmpty());
63         return resultEvents.remove(0);
64     }
65
66     /**
67      * {@inheritDoc}.
68      */
69     @Override
70     public void onEnEvent(final EnEvent saleauthEvent) {
71         if (saleauthEvent != null) {
72             System.out.println("SaleAuth event from engine:" + saleauthEvent.getName());
73             resultEvents.add(saleauthEvent);
74         }
75     }
76
77     /**
78      * Gets the id.
79      *
80      * @return the id
81      */
82     public String getId() {
83         return id;
84     }
85 }