Containerization feature of SO
[so.git] / bpmn / mso-infrastructure-bpmn / src / test / java / org / onap / so / bpmn / infrastructure / pnf / delegate / DmaapClientTestImpl.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.so.bpmn.infrastructure.pnf.delegate;
22
23 import org.onap.so.bpmn.infrastructure.pnf.dmaap.DmaapClient;
24 import java.util.Objects;
25
26 public class DmaapClientTestImpl implements DmaapClient {
27
28     private String correlationId;
29     private Runnable informConsumer;
30
31     @Override
32     public void registerForUpdate(String correlationId, Runnable informConsumer) {
33         this.correlationId = correlationId;
34         this.informConsumer = informConsumer;
35     }
36
37     @Override
38     public Runnable unregister(String correlationId) {
39         if (Objects.equals(this.correlationId, correlationId)) {
40             this.correlationId = null;
41             Runnable informConsumer = this.informConsumer;
42             this.informConsumer = null;
43             return informConsumer;
44         }
45         return null;
46     }
47
48     public String getCorrelationId() {
49         return correlationId;
50     }
51
52     public Runnable getInformConsumer() {
53         return informConsumer;
54     }
55
56     public boolean haveRegisteredConsumer() {
57         return correlationId != null;
58     }
59 }