/* * 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.impl.mapping.operations; import org.opendaylight.controller.netconf.api.NetconfSession; import org.opendaylight.controller.netconf.api.NetconfDocumentedException; import org.opendaylight.controller.netconf.api.NetconfOperationRouter; import org.opendaylight.controller.netconf.mapping.api.DefaultNetconfOperation; import org.opendaylight.controller.netconf.mapping.api.HandlingPriority; import org.opendaylight.controller.netconf.util.mapping.AbstractNetconfOperation; import org.opendaylight.controller.netconf.util.xml.XmlElement; import org.opendaylight.controller.netconf.util.xml.XmlNetconfConstants; import org.opendaylight.controller.netconf.util.xml.XmlUtil; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.w3c.dom.Document; import org.w3c.dom.Element; public class DefaultStartExi extends AbstractNetconfOperation implements DefaultNetconfOperation { public static final String START_EXI = "start-exi"; private NetconfSession netconfSession; private static final Logger logger = LoggerFactory.getLogger(DefaultStartExi.class); public DefaultStartExi(String netconfSessionIdForReporting) { super(netconfSessionIdForReporting); } @Override protected HandlingPriority canHandle(String operationName, String netconfOperationNamespace) { if (operationName.equals(START_EXI) == false) return HandlingPriority.CANNOT_HANDLE; if (netconfOperationNamespace .equals(XmlNetconfConstants.URN_IETF_PARAMS_XML_NS_NETCONF_BASE_1_0) == false) return HandlingPriority.CANNOT_HANDLE; return HandlingPriority.HANDLE_WITH_DEFAULT_PRIORITY; } @Override protected Element handle(Document document, XmlElement operationElement, NetconfOperationRouter opRouter) throws NetconfDocumentedException { Element getSchemaResult = document .createElement(XmlNetconfConstants.OK); XmlUtil.addNamespaceAttr(getSchemaResult, XmlNetconfConstants.URN_IETF_PARAMS_XML_NS_NETCONF_BASE_1_0); throw new UnsupportedOperationException("Not implemented"); /* try { ExiParameters exiParams = new ExiParameters(); exiParams.setParametersFromXmlElement(operationElement); netconfSession.addExiDecoder(ExiDecoderHandler.HANDLER_NAME, new ExiDecoderHandler(exiParams)); netconfSession.addExiEncoderAfterMessageSent(ExiEncoderHandler.HANDLER_NAME,new ExiEncoderHandler(exiParams)); } catch (EXIException e) { getSchemaResult = document .createElement(XmlNetconfConstants.RPC_ERROR); } logger.trace("{} operation successful", START_EXI); logger.debug("received start-exi message {} ", XmlUtil.toString(document)); return getSchemaResult; */ } @Override public void setNetconfSession(NetconfSession s) { netconfSession = s; } public NetconfSession getNetconfSession() { return netconfSession; } }