X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fnetconf%2Fnetconf-util%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fnetconf%2Futil%2Fhandler%2FFramingMechanismHandlerFactory.java;fp=opendaylight%2Fnetconf%2Fnetconf-util%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fnetconf%2Futil%2Fhandler%2FFramingMechanismHandlerFactory.java;h=0000000000000000000000000000000000000000;hp=bac83e49d3c463548589c48ae367d972ae818d6e;hb=c3108b4e80ec9f6ee6c8cf96df3009bb91dc8bc0;hpb=04a788d2df5303c60cdbcff02254291f411566bd diff --git a/opendaylight/netconf/netconf-util/src/main/java/org/opendaylight/controller/netconf/util/handler/FramingMechanismHandlerFactory.java b/opendaylight/netconf/netconf-util/src/main/java/org/opendaylight/controller/netconf/util/handler/FramingMechanismHandlerFactory.java deleted file mode 100644 index bac83e49d3..0000000000 --- a/opendaylight/netconf/netconf-util/src/main/java/org/opendaylight/controller/netconf/util/handler/FramingMechanismHandlerFactory.java +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved. - * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v1.0 which accompanies this distribution, - * and is available at http://www.eclipse.org/legal/epl-v10.html - */ - -package org.opendaylight.controller.netconf.util.handler; - -import org.opendaylight.controller.netconf.util.messages.FramingMechanism; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - -import io.netty.buffer.ByteBuf; -import io.netty.handler.codec.MessageToByteEncoder; - -public final class FramingMechanismHandlerFactory { - - private static final Logger logger = LoggerFactory.getLogger(FramingMechanismHandlerFactory.class); - - private FramingMechanismHandlerFactory() { - // not called - private constructor for utility class - } - - public static MessageToByteEncoder createHandler(FramingMechanism framingMechanism) { - logger.debug("{} framing mechanism was selected.", framingMechanism); - if (framingMechanism == FramingMechanism.EOM) { - return new EOMFramingMechanismEncoder(); - } else { - return new ChunkedFramingMechanismEncoder(); - } - } -}