X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fnetconf%2Fnetconf-netty-util%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fnetconf%2Fnettyutil%2FAbstractNetconfSessionNegotiator.java;h=e5c3c12b992246516165e94f1f0dbb48de3ddefd;hp=de3f732b25763fa19d6b481a64bfbcf4d8bcf87c;hb=d5fcdd3416922d61f0bdebbe57e351456e3a3750;hpb=ffdd886888129a77a08aa77826a7f092cf9e3392 diff --git a/opendaylight/netconf/netconf-netty-util/src/main/java/org/opendaylight/controller/netconf/nettyutil/AbstractNetconfSessionNegotiator.java b/opendaylight/netconf/netconf-netty-util/src/main/java/org/opendaylight/controller/netconf/nettyutil/AbstractNetconfSessionNegotiator.java index de3f732b25..e5c3c12b99 100644 --- a/opendaylight/netconf/netconf-netty-util/src/main/java/org/opendaylight/controller/netconf/nettyutil/AbstractNetconfSessionNegotiator.java +++ b/opendaylight/netconf/netconf-netty-util/src/main/java/org/opendaylight/controller/netconf/nettyutil/AbstractNetconfSessionNegotiator.java @@ -42,9 +42,9 @@ import org.w3c.dom.Document; import org.w3c.dom.NodeList; public abstract class AbstractNetconfSessionNegotiator

, L extends NetconfSessionListener> -extends AbstractSessionNegotiator { + extends AbstractSessionNegotiator { - private static final Logger logger = LoggerFactory.getLogger(AbstractNetconfSessionNegotiator.class); + private static final Logger LOG = LoggerFactory.getLogger(AbstractNetconfSessionNegotiator.class); public static final String NAME_OF_EXCEPTION_HANDLER = "lastExceptionHandler"; @@ -85,7 +85,7 @@ extends AbstractSessionNegotiator { @Override public void operationComplete(Future future) { Preconditions.checkState(future.isSuccess(), "Ssl handshake was not successful"); - logger.debug("Ssl handshake complete"); + LOG.debug("Ssl handshake complete"); start(); } }); @@ -105,7 +105,7 @@ extends AbstractSessionNegotiator { private void start() { final NetconfMessage helloMessage = this.sessionPreferences.getHelloMessage(); - logger.debug("Session negotiation started with hello message {} on channel {}", XmlUtil.toString(helloMessage.getDocument()), channel); + LOG.debug("Session negotiation started with hello message {} on channel {}", XmlUtil.toString(helloMessage.getDocument()), channel); channel.pipeline().addLast(NAME_OF_EXCEPTION_HANDLER, new ExceptionHandlingInboundChannelHandler()); @@ -121,7 +121,7 @@ extends AbstractSessionNegotiator { synchronized (this) { if (state != State.ESTABLISHED) { - logger.debug("Connection timeout after {}, session is in state {}", timeout, state); + LOG.debug("Connection timeout after {}, session is in state {}", timeout, state); // Do not fail negotiation if promise is done or canceled // It would result in setting result of the promise second time and that throws exception @@ -133,9 +133,9 @@ extends AbstractSessionNegotiator { @Override public void operationComplete(ChannelFuture future) throws Exception { if(future.isSuccess()) { - logger.debug("Channel {} closed: success", future.channel()); + LOG.debug("Channel {} closed: success", future.channel()); } else { - logger.warn("Channel {} closed: fail", future.channel()); + LOG.warn("Channel {} closed: fail", future.channel()); } } }); @@ -223,7 +223,7 @@ extends AbstractSessionNegotiator { protected abstract S getSession(L sessionListener, Channel channel, NetconfHelloMessage message) throws NetconfDocumentedException; private synchronized void changeState(final State newState) { - logger.debug("Changing state from : {} to : {} for channel: {}", state, newState, channel); + LOG.debug("Changing state from : {} to : {} for channel: {}", state, newState, channel); Preconditions.checkState(isStateChangePermitted(state, newState), "Cannot change state from %s to %s for chanel %s", state, newState, channel); this.state = newState; @@ -249,7 +249,7 @@ extends AbstractSessionNegotiator { if (state == State.OPEN_WAIT && newState == State.FAILED) { return true; } - logger.debug("Transition from {} to {} is not allowed", state, newState); + LOG.debug("Transition from {} to {} is not allowed", state, newState); return false; } @@ -259,7 +259,7 @@ extends AbstractSessionNegotiator { private final class ExceptionHandlingInboundChannelHandler extends ChannelInboundHandlerAdapter { @Override public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) { - logger.warn("An exception occurred during negotiation with {}", channel.remoteAddress(), cause); + LOG.warn("An exception occurred during negotiation with {}", channel.remoteAddress(), cause); cancelTimeout(); negotiationFailed(cause); changeState(State.FAILED);