Fix checkstyle violations in sdc-main/common
[sdc.git] / common / onap-tosca-datatype / src / main / java / org / onap / sdc / tosca / datatypes / model / Credential.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.sdc.tosca.datatypes.model;
22
23 import java.util.Map;
24
25 public class Credential {
26   private String protocol;
27   private String token_type;
28   private String token;
29   private Map<String, String> keys;
30   private String user;
31
32   public Credential() {
33     this.token_type = "password";
34   }
35
36   public String getProtocol() {
37     return protocol;
38   }
39
40   public void setProtocol(String protocol) {
41     this.protocol = protocol;
42   }
43
44   public String getToken_type() {
45     return token_type;
46   }
47
48   public void setToken_type(String token_type) {
49     this.token_type = token_type;
50   }
51
52   public String getToken() {
53     return token;
54   }
55
56   public void setToken(String token) {
57     this.token = token;
58   }
59
60   public Map<String, String> getKeys() {
61     return keys;
62   }
63
64   public void setKeys(Map<String, String> keys) {
65     this.keys = keys;
66   }
67
68   public String getUser() {
69     return user;
70   }
71
72   public void setUser(String user) {
73     this.user = user;
74   }
75 }