2 * ================================================================================
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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 * ================================================================================
20 package org.openecomp.portalsdk.rnotebookintegration.domain;
22 import java.util.Date;
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;
29 import com.fasterxml.jackson.annotation.JsonIgnore;
31 public class RNoteBookCredentials extends DomainVo {
32 private EcompUser userInfo;
34 private Date createdDate;
35 private String notebookID;
36 private Map<String, String> parameters;
37 private Date tokenReadDate;
39 private String userString;
41 private String parametersString;
43 public String getToken() {
46 public void setToken(String token) {
49 public Date getCreatedDate() {
52 public void setCreatedDate(Date createdDate) {
53 this.createdDate = createdDate;
55 public String getNotebookID() {
58 public EcompUser getUserInfo() {
61 public void setUserInfo(EcompUser userInfo) {
62 this.userInfo = userInfo;
64 public void setNotebookID(String notebookID) {
65 this.notebookID = notebookID;
67 public String getUserString() {
70 public void setUserString(String userString) {
71 this.userString = userString;
73 public Map<String, String> getParameters() {
76 public void setParameters(Map<String, String> parameters) {
77 this.parameters = parameters;
79 public String getParametersString() {
80 return parametersString;
82 public void setParametersString(String parametersString) {
83 this.parametersString = parametersString;
85 public Date getTokenReadDate() {
88 public void setTokenReadDate(Date tokenReadDate) {
89 this.tokenReadDate = tokenReadDate;