blob: 52575353b19c998764da467b7b653fa5c49ba057 [file] [log] [blame]
Andrei Mihaescuac542ca2017-03-26 21:36:25 +03001/*
2 * Copyright 2017-present Open Networking Laboratory
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package org.onosproject.netconf;
18
Yuta HIGUCHI89111d92017-05-04 11:29:17 -070019/**
20 * @deprecated in 1.10.0 use TargetConfiguration instead
21 * According to NETCONF RFC,
22 * various additional configuration datastores may be defined by capabilities.
23 */
24@Deprecated
Andrei Mihaescuac542ca2017-03-26 21:36:25 +030025public enum TargetConfig {
26 RUNNING("running"),
27 CANDIDATE("candidate"),
28 STARTUP("startup");
29
30 private String name;
31
32 TargetConfig(String name) {
33 this.name = name;
34 }
35
Shivani Vaidya48df84e2017-04-13 13:48:17 -070036 public static TargetConfig toTargetConfig(String targetConfig) {
37 return valueOf(targetConfig.toUpperCase());
Andrei Mihaescuac542ca2017-03-26 21:36:25 +030038 }
39
Yuta HIGUCHI89111d92017-05-04 11:29:17 -070040 public static DatastoreId toDatastoreId(String cfg) {
41 return toDatastoreId(toTargetConfig(cfg));
42 }
43
44 public static DatastoreId toDatastoreId(TargetConfig cfg) {
45 switch (cfg) {
46 case CANDIDATE:
47 return DatastoreId.CANDIDATE;
48 case RUNNING:
49 return DatastoreId.RUNNING;
50 case STARTUP:
51 return DatastoreId.STARTUP;
52 default:
53 return DatastoreId.datastore(cfg.name);
54 }
55 }
56
Andrei Mihaescuac542ca2017-03-26 21:36:25 +030057 @Override
58 public String toString() {
59 return this.name;
60 }
Shivani Vaidya48df84e2017-04-13 13:48:17 -070061
Andrei Mihaescuac542ca2017-03-26 21:36:25 +030062}