Fix compilation failure caused by DocumentedException refactoring
[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
9 package org.opendaylight.netconf.mdsal.connector.ops;
10
11 import com.google.common.base.Optional;
12 import org.opendaylight.controller.config.util.xml.DocumentedException;
13 import org.opendaylight.controller.config.util.xml.XmlElement;
14 import org.opendaylight.controller.config.util.xml.XmlUtil;
15 import org.opendaylight.netconf.api.xml.XmlNetconfConstants;
16 import org.opendaylight.netconf.util.mapping.AbstractSingletonNetconfOperation;
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/operations/UnLock.java
24 public class Unlock extends AbstractSingletonNetconfOperation {
25
26     private static final Logger LOG = LoggerFactory.getLogger(Unlock.class);
27
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) throws DocumentedException {
36         final Datastore targetDatastore = Lock.extractTargetParameter(operationElement);
37         if (targetDatastore == Datastore.candidate) {
38             LOG.debug("Unlocking candidate datastore on session: {}", getNetconfSessionIdForReporting());
39             return XmlUtil.createElement(document, XmlNetconfConstants.OK, Optional.<String>absent());
40         }
41
42         throw new DocumentedException("Unable to unlock " + targetDatastore + " datastore", DocumentedException.ErrorType.APPLICATION,
43                 DocumentedException.ErrorTag.OPERATION_NOT_SUPPORTED, DocumentedException.ErrorSeverity.ERROR);
44     }
45
46     @Override
47     protected String getOperationName() {
48         return OPERATION_NAME;
49     }
50
51 }