Flatten callhome-provider
[netconf.git] / apps / callhome-provider / src / main / java / org / opendaylight / netconf / topology / callhome / CallHomeTlsSessionContext.java
1 /*
2  * Copyright (c) 2023 PANTHEON.tech s.r.o. and others. All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.netconf.topology.callhome;
9
10 import static java.util.Objects.requireNonNull;
11
12 import com.google.common.base.MoreObjects;
13 import com.google.common.util.concurrent.SettableFuture;
14 import io.netty.channel.Channel;
15 import org.opendaylight.netconf.client.NetconfClientSession;
16 import org.opendaylight.netconf.client.NetconfClientSessionListener;
17
18 public record CallHomeTlsSessionContext(String id, Channel nettyChannel,
19         NetconfClientSessionListener netconfSessionListener, SettableFuture<NetconfClientSession> settableFuture)
20         implements CallHomeSessionContext {
21
22     public CallHomeTlsSessionContext {
23         requireNonNull(id);
24         requireNonNull(nettyChannel);
25         requireNonNull(netconfSessionListener);
26         requireNonNull(settableFuture);
27     }
28
29     @Override
30     public void close() {
31         if (nettyChannel.isOpen()) {
32             nettyChannel.close();
33         }
34     }
35
36     @Override
37     public String toString() {
38         return MoreObjects.toStringHelper(this)
39             .add("protocol", "TLS")
40             .add("id", id)
41             .add("address", nettyChannel.remoteAddress())
42             .toString();
43     }
44 }