[SDC-29] rebase continue work to align source
[sdc.git] / test-apis-ci / src / main / java / org / openecomp / sdc / ci / tests / datatypes / expected / ExpectedAuthenticationAudit.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 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.openecomp.sdc.ci.tests.datatypes.expected;
22
23 public class ExpectedAuthenticationAudit {
24
25         private String url;
26         private String realm;
27         private String user;
28         private String action;
29         private String authStatus;
30
31         public ExpectedAuthenticationAudit(String url, String user, String action, String authStatus) {
32                 super();
33                 this.url = url;
34                 this.user = user;
35                 this.action = action;
36                 this.authStatus = authStatus;
37                 this.realm = "ASDC";
38         }
39
40         public ExpectedAuthenticationAudit() {
41
42         }
43
44         public String getUrl() {
45                 return url;
46         }
47
48         public void setUrl(String url) {
49                 this.url = url;
50         }
51
52         public String getRealm() {
53                 return realm;
54         }
55
56         public void setRealm(String realm) {
57                 this.realm = realm;
58         }
59
60         public String getUser() {
61                 return user;
62         }
63
64         public void setUser(String user) {
65                 this.user = user;
66         }
67
68         public String getAction() {
69                 return action;
70         }
71
72         public void setAction(String action) {
73                 this.action = action;
74         }
75
76         public String getAuthStatus() {
77                 return authStatus;
78         }
79
80         public void setAuthStatus(String authStatus) {
81                 this.authStatus = authStatus;
82         }
83
84         @Override
85         public String toString() {
86                 return "ExpectedAuthenticationAudit [url=" + url + ", realm=" + realm + ", user=" + user + ", action=" + action
87                                 + ", authStatus=" + authStatus + "]";
88         }
89
90 }