- Added exi capability utilities, handlers and necessary modifications
[controller.git] / opendaylight / netconf / netconf-impl / src / main / java / org / opendaylight / controller / netconf / impl / NetconfServerSession.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, Inc. 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
9 package org.opendaylight.controller.netconf.impl;
10
11 import io.netty.channel.Channel;
12
13 import org.opendaylight.controller.netconf.api.NetconfSession;
14 import org.opendaylight.protocol.framework.SessionListener;
15 import org.slf4j.Logger;
16 import org.slf4j.LoggerFactory;
17
18 public class NetconfServerSession extends NetconfSession {
19
20     private static final Logger logger = LoggerFactory.getLogger(NetconfServerSession.class);
21
22     public NetconfServerSession(SessionListener sessionListener, Channel channel, long sessionId) {
23         super(sessionListener,channel,sessionId);
24         logger.debug("Session {} created", toString());
25     }
26 }