4fd8f22feece27d84910fc89154fe3ef9a2f109b
[netconf.git] / netconf / mdsal-netconf-connector / src / main / java / org / opendaylight / netconf / mdsal / connector / ops / Unlock.java
1 /*
2  * Copyright (c) 2015 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 package org.opendaylight.netconf.mdsal.connector.ops;
9
10 import org.opendaylight.netconf.api.DocumentedException;
11 import org.opendaylight.netconf.api.xml.XmlElement;
12 import org.opendaylight.netconf.api.xml.XmlNetconfConstants;
13 import org.opendaylight.netconf.util.mapping.AbstractSingletonNetconfOperation;
14 import org.opendaylight.yangtools.yang.common.ErrorSeverity;
15 import org.opendaylight.yangtools.yang.common.ErrorTag;
16 import org.opendaylight.yangtools.yang.common.ErrorType;
17 import org.slf4j.Logger;
18 import org.slf4j.LoggerFactory;
19 import org.w3c.dom.Document;
20 import org.w3c.dom.Element;
21
22 /* FIXME Duplicated code
23    netconf/netconf/config-netconf-connector/src/main/java/org/opendaylight/netconf/confignetconfconnector/
24    operations/UnLock.java
25 */
26 public class Unlock extends AbstractSingletonNetconfOperation {
27     private static final Logger LOG = LoggerFactory.getLogger(Unlock.class);
28     private static final String OPERATION_NAME = "unlock";
29
30     public Unlock(final String netconfSessionIdForReporting) {
31         super(netconfSessionIdForReporting);
32     }
33
34     @Override
35     protected Element handleWithNoSubsequentOperations(final Document document, final XmlElement operationElement)
36             throws DocumentedException {
37         final Datastore targetDatastore = Lock.extractTargetParameter(operationElement);
38         if (targetDatastore == Datastore.candidate) {
39             LOG.debug("Unlocking candidate datastore on session: {}", getNetconfSessionIdForReporting());
40             return document.createElement(XmlNetconfConstants.OK);
41         }
42
43         throw new DocumentedException("Unable to unlock " + targetDatastore + " datastore",
44                 ErrorType.APPLICATION, ErrorTag.OPERATION_NOT_SUPPORTED, ErrorSeverity.ERROR);
45     }
46
47     @Override
48     protected String getOperationName() {
49         return OPERATION_NAME;
50     }
51 }