Fix the security issue
[clamp.git] / src / main / java / org / onap / clamp / clds / model / CldsMonitoringDetails.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP CLAMP
4  * ================================================================================
5  * Copyright (C) 2018 AT&T Intellectual Property. All rights
6  *                             reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END============================================
20  * ===================================================================
21  * 
22  */
23
24 package org.onap.clamp.clds.model;
25
26 /**
27  * Maintains model and template details.
28  */
29 public class CldsMonitoringDetails {
30
31     private String closeloopName;
32     private String modelId;
33     private String modelName;
34     private String serviceTypeId;
35     private String deploymentId;
36     private String templateName;
37     private String action;
38     private String userid;
39     private String timestamp;
40
41     public String getCloseloopName() {
42         return closeloopName;
43     }
44
45     public void setCloseloopName(String closeloopName) {
46         this.closeloopName = closeloopName;
47     }
48
49     public String getModelId() {
50         return modelId;
51     }
52
53     public void setModelId(String modelId) {
54         this.modelId = modelId;
55     }
56
57     public String getModelName() {
58         return modelName;
59     }
60
61     public void setModelName(String modelName) {
62         this.modelName = modelName;
63     }
64
65     public String getServiceTypeId() {
66         return serviceTypeId;
67     }
68
69     public void setServiceTypeId(String serviceTypeId) {
70         this.serviceTypeId = serviceTypeId;
71     }
72
73     public String getDeploymentId() {
74         return deploymentId;
75     }
76
77     public void setDeploymentId(String deploymentId) {
78         this.deploymentId = deploymentId;
79     }
80
81     public String getTemplateName() {
82         return templateName;
83     }
84
85     public void setTemplateName(String templateName) {
86         this.templateName = templateName;
87     }
88
89     public String getAction() {
90         return action;
91     }
92
93     public void setAction(String action) {
94         this.action = action;
95     }
96
97     public String getUserid() {
98         return userid;
99     }
100
101     public void setUserid(String userid) {
102         this.userid = userid;
103     }
104
105     public String getTimestamp() {
106         return timestamp;
107     }
108
109     public void setTimestamp(String time) {
110         this.timestamp = time;
111     }
112
113 }