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