d2928495652ad904e0180e338f5472ba8fb04011
[portal/sdk.git] /
1 /*-
2  * ================================================================================
3  * eCOMP Portal SDK
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property
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  * ================================================================================
19  */
20 package org.openecomp.portalsdk.rnotebookintegration.domain;
21
22 import java.util.Date;
23 import java.util.Map;
24
25 import org.openecomp.portalsdk.core.domain.User;
26 import org.openecomp.portalsdk.core.domain.support.DomainVo;
27 import org.openecomp.portalsdk.core.restful.domain.EcompUser;
28
29 import com.fasterxml.jackson.annotation.JsonIgnore;
30
31 public class RNoteBookCredentials extends DomainVo {
32         private EcompUser userInfo;
33         private String token;
34         private Date createdDate;
35         private String notebookID;
36     private Map<String, String> parameters;
37     private Date tokenReadDate;
38     @JsonIgnore
39     private String userString;
40     @JsonIgnore
41     private String parametersString;
42     
43         public String getToken() {
44                 return token;
45         }
46         public void setToken(String token) {
47                 this.token = token;
48         }
49         public Date getCreatedDate() {
50                 return createdDate;
51         }
52         public void setCreatedDate(Date createdDate) {
53                 this.createdDate = createdDate;
54         }
55         public String getNotebookID() {
56                 return notebookID;
57         }
58         public EcompUser getUserInfo() {
59                 return userInfo;
60         }
61         public void setUserInfo(EcompUser userInfo) {
62                 this.userInfo = userInfo;
63         }
64         public void setNotebookID(String notebookID) {
65                 this.notebookID = notebookID;
66         }
67         public String getUserString() {
68                 return userString;
69         }
70         public void setUserString(String userString) {
71                 this.userString = userString;
72         }
73         public Map<String, String> getParameters() {
74                 return parameters;
75         }
76         public void setParameters(Map<String, String> parameters) {
77                 this.parameters = parameters;
78         }
79         public String getParametersString() {
80                 return parametersString;
81         }
82         public void setParametersString(String parametersString) {
83                 this.parametersString = parametersString;
84         }
85         public Date getTokenReadDate() {
86                 return tokenReadDate;
87         }
88         public void setTokenReadDate(Date tokenReadDate) {
89                 this.tokenReadDate = tokenReadDate;
90         }
91     
92     
93         
94 }