blob: 90f31480952fed1b594be4d929f5fdb670804dfe [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
19public enum TargetConfig {
20 RUNNING("running"),
21 CANDIDATE("candidate"),
22 STARTUP("startup");
23
24 private String name;
25
26 TargetConfig(String name) {
27 this.name = name;
28 }
29
Shivani Vaidya48df84e2017-04-13 13:48:17 -070030 public static TargetConfig toTargetConfig(String targetConfig) {
31 return valueOf(targetConfig.toUpperCase());
Andrei Mihaescuac542ca2017-03-26 21:36:25 +030032 }
33
34 @Override
35 public String toString() {
36 return this.name;
37 }
Shivani Vaidya48df84e2017-04-13 13:48:17 -070038
Andrei Mihaescuac542ca2017-03-26 21:36:25 +030039}