SSHApiCallNode sshExec API Impl
[ccsdk/sli/plugins.git] / sshapi-call-node / provider / src / main / java / org / onap / ccsdk / sli / plugins / sshapicall / model / AuthType.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * openECOMP : SDN-C
4  * ================================================================================
5  * * Copyright (C) 2017 AT&T Intellectual Property.
6  * ================================================================================
7  * Copyright (C) 2018 Samsung Electronics. All rights
8  *                      reserved.
9  * ================================================================================
10  *
11  * Licensed under the Apache License, Version 2.0 (the "License");
12  * you may not use this file except in compliance with the License.
13  * You may obtain a copy of the License at
14  *
15  *      http://www.apache.org/licenses/LICENSE-2.0
16  *
17  * Unless required by applicable law or agreed to in writing, software
18  * distributed under the License is distributed on an "AS IS" BASIS,
19  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20  * See the License for the specific language governing permissions and
21  * limitations under the License.
22  * ============LICENSE_END=========================================================
23  */
24
25 package org.onap.ccsdk.sli.plugins.sshapicall.model;
26
27 public enum AuthType {
28     NONE, BASIC, KEY, UNSPECIFIED;
29
30     public static AuthType fromString(String s) {
31         if ("basic".equalsIgnoreCase(s))
32             return BASIC;
33         if ("key".equalsIgnoreCase(s))
34             return KEY;
35         if ("unspecified".equalsIgnoreCase(s))
36             return UNSPECIFIED;
37         if ("none".equalsIgnoreCase(s))
38             return NONE;
39         throw new IllegalArgumentException("Invalid value for format: " + s);
40     }
41 }