Improve unit-test coverage
[vfc/nfvo/driver/vnfm/svnfm.git] / nokia / vnfmdriver / vfcadaptorservice / vfcadaptor / src / main / java / org / onap / vfc / nfvo / driver / vnfm / svnfm / cbam / bo / entity / SubscriptionAuthentication.java
1 /*
2  * Copyright 2016-2017, Nokia Corporation
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 package org.onap.vfc.nfvo.driver.vnfm.svnfm.cbam.bo.entity;
17
18 import com.fasterxml.jackson.annotation.JsonProperty;
19
20 public class SubscriptionAuthentication {
21    
22         
23         @JsonProperty("type")
24         private Type type;
25         
26         @JsonProperty("userName")
27         private String userName;
28         
29         @JsonProperty("password")
30         private String password;
31         
32         @JsonProperty("clientName")
33         private String clientName;
34         
35         @JsonProperty("clientPassword")
36         private String clientPassword;
37         
38         @JsonProperty("tokenUrl")
39         private String tokenUrl;
40
41         public Type getType() {
42                 return type;
43         }
44
45         public void setType(Type type) {
46                 this.type = type;
47         }
48
49         public String getUserName() {
50                 return userName;
51         }
52
53         public void setUserName(String userName) {
54                 this.userName = userName;
55         }
56
57         public String getPassword() {
58                 return password;
59         }
60
61         public void setPassword(String password) {
62                 this.password = password;
63         }
64
65         public String getClientName() {
66                 return clientName;
67         }
68
69         public void setClientName(String clientName) {
70                 this.clientName = clientName;
71         }
72
73         public String getClientPassword() {
74                 return clientPassword;
75         }
76
77         public void setClientPassword(String clientPassword) {
78                 this.clientPassword = clientPassword;
79         }
80
81         public String getTokenUrl() {
82                 return tokenUrl;
83         }
84
85         public void setTokenUrl(String tokenUrl) {
86                 this.tokenUrl = tokenUrl;
87         }
88         
89         
90         
91 }