Clean up NetconfClientSessionImpl
[netconf.git] / netconf / netconf-netty-util / src / main / java / org / opendaylight / netconf / nettyutil / handler / ssh / client / NettyAwareChannelSubsystem.java
1 /*
2  * Copyright (c) 2019 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.nettyutil.handler.ssh.client;
9
10 import static java.util.Objects.requireNonNull;
11
12 import io.netty.channel.ChannelHandlerContext;
13
14 /**
15  * An {@link AbstractNettyChannelSubsystem} for subsystem which routes incoming data to a particular
16  * {@link ChannelHandlerContext}.
17  */
18 // Non-final for testing
19 public non-sealed class NettyAwareChannelSubsystem extends AbstractNettyChannelSubsystem {
20     private final ChannelHandlerContext ctx;
21
22     NettyAwareChannelSubsystem(final String subsystem, final ChannelHandlerContext ctx) {
23         super(subsystem);
24         this.ctx = requireNonNull(ctx);
25     }
26
27     @Override
28     final ChannelHandlerContext context() {
29         return ctx;
30     }
31 }