Remove ECOMP in headers
[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 modelName;
33     private String serviceTypeId;
34     private String deploymentId;
35     private String templateName;
36     private String action;
37     private String userid;
38     private String timestamp;
39
40     public String getCloseloopName() {
41         return closeloopName;
42     }
43
44     public void setCloseloopName(String closeloopName) {
45         this.closeloopName = closeloopName;
46     }
47
48     public String getModelName() {
49         return modelName;
50     }
51
52     public void setModelName(String modelName) {
53         this.modelName = modelName;
54     }
55
56     public String getServiceTypeId() {
57         return serviceTypeId;
58     }
59
60     public void setServiceTypeId(String serviceTypeId) {
61         this.serviceTypeId = serviceTypeId;
62     }
63
64     public String getDeploymentId() {
65         return deploymentId;
66     }
67
68     public void setDeploymentId(String deploymentId) {
69         this.deploymentId = deploymentId;
70     }
71
72     public String getTemplateName() {
73         return templateName;
74     }
75
76     public void setTemplateName(String templateName) {
77         this.templateName = templateName;
78     }
79
80     public String getAction() {
81         return action;
82     }
83
84     public void setAction(String action) {
85         this.action = action;
86     }
87     
88     public String getUserid() {
89         return userid;
90     }
91
92     public void setUserid(String userid) {
93         this.userid = userid;
94     }
95     
96     public String getTimestamp() {
97         return timestamp;  
98     }
99
100     public void setTimestamp(String time) {
101         this.timestamp = time;
102     }
103
104 }