4491e763b3b39cde75e71abffe1d06a987fd31ef
[controller.git] / opendaylight / netconf / netconf-util / src / main / java / org / opendaylight / controller / netconf / util / mapping / AbstractSingletonNetconfOperation.java
1 /*
2  * Copyright (c) 2013 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.controller.netconf.util.mapping;
9
10 import org.opendaylight.controller.netconf.mapping.api.HandlingPriority;
11
12 public abstract class AbstractSingletonNetconfOperation extends AbstractLastNetconfOperation {
13
14     protected AbstractSingletonNetconfOperation(String netconfSessionIdForReporting) {
15         super(netconfSessionIdForReporting);
16     }
17
18     @Override
19     protected HandlingPriority getHandlingPriority() {
20         return HandlingPriority.HANDLE_WITH_MAX_PRIORITY;
21     }
22
23 }