summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/sdk-analytics/src/main/java/org/openecomp/portalsdk/analytics/system/fusion/domain/CR_Report.java
blob: 9f6ed7d6dd3028fa37b9330ec2d7fa966689dba3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
/*-
 * ================================================================================
 * eCOMP Portal SDK
 * ================================================================================
 * Copyright (C) 2017 AT&T Intellectual Property
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ================================================================================
 */
package org.openecomp.portalsdk.analytics.system.fusion.domain;


import java.util.Date;

import org.openecomp.portalsdk.core.domain.User;
import org.openecomp.portalsdk.core.domain.support.DomainVo;;

/**
 * <p>CR_Report.java</p>
 * <p>Represents a RAPTOR report data object.</p>
 *
 * @version 1.0
 */
public class CR_Report extends DomainVo {

    private String title;
    private String descr;
    private String public_yn;
    //private String report_xml;
    private Date   createDate;
    private Date   maintDate;
    private String menuId;
    private String menuApproved_YN;
    private User  ownerId;
    private Long   folderId;
    private String dashboard_type_YN;
    private String dashboard_yn;
    private User createId;
    private User maintId;

/*
    //New Buttons
    private String copyImagePath = "/static/fusion/raptor/img/cross-small.png" ; 
    private String editImagePath = "/static/fusion/raptor/img/pencil-small.png" ; 
    private String deleteImagePath = "/static/fusion/raptor/img/DeleteCross-16x16.png" ; 
    private String scheduleImagePath = "/static/fusion/raptor/img/Calendar-16x16.png" ; 
    private String runImagePath = "/static/fusion/raptor/img/tick-small.png" ; 
    
*/  
    //private Set     reportAccess  = new TreeSet();

    public CR_Report() {}

    

    /**
	 * @return the title
	 */
	public String getTitle() {
		return title;
	}



	/**
	 * @param title the title to set
	 */
	public void setTitle(String title) {
		this.title = title;
	}



	/**
	 * @return the descr
	 */
	public String getDescr() {
		return descr;
	}



	/**
	 * @param descr the descr to set
	 */
	public void setDescr(String descr) {
		this.descr = descr;
	}



	/**
	 * @return the public_yn
	 */
	public String getPublic_yn() {
		return public_yn;
	}



	/**
	 * @param public_yn the public_yn to set
	 */
	public void setPublic_yn(String public_yn) {
		this.public_yn = public_yn;
	}


	/**
	 * @return the createDate
	 */
	public Date getCreateDate() {
		return createDate;
	}



	/**
	 * @param createDate the createDate to set
	 */
	public void setCreateDate(Date createDate) {
		this.createDate = createDate;
	}


	/**
	 * @return the maintDate
	 */
	public Date getMaintDate() {
		return maintDate;
	}



	/**
	 * @param maintDate the maintDate to set
	 */
	public void setMaintDate(Date maintDate) {
		this.maintDate = maintDate;
	}



	/**
	 * @return the menuId
	 */
	public String getMenuId() {
		return menuId;
	}



	/**
	 * @param menuId the menuId to set
	 */
	public void setMenuId(String menuId) {
		this.menuId = menuId;
	}



	/**
	 * @return the menuApproved_YN
	 */
	public String getMenuApproved_YN() {
		return menuApproved_YN;
	}



	/**
	 * @param menuApproved_YN the menuApproved_YN to set
	 */
	public void setMenuApproved_YN(String menuApproved_YN) {
		this.menuApproved_YN = menuApproved_YN;
	}




	/**
	 * @return the folderId
	 */
	public Long getFolderId() {
		return folderId;
	}



	/**
	 * @param folderId the folderId to set
	 */
	public void setFolderId(Long folderId) {
		this.folderId = folderId;
	}



	/**
	 * @return the dashboard_type_YN
	 */
	public String getDashboard_type_YN() {
		return dashboard_type_YN;
	}



	/**
	 * @param dashboard_type_YN the dashboard_type_YN to set
	 */
	public void setDashboard_type_YN(String dashboard_type_YN) {
		this.dashboard_type_YN = dashboard_type_YN;
	}



	/**
	 * @return the dashboard_yn
	 */
	public String getDashboard_yn() {
		return dashboard_yn;
	}



	/**
	 * @param dashboard_yn the dashboard_yn to set
	 */
	public void setDashboard_yn(String dashboard_yn) {
		this.dashboard_yn = dashboard_yn;
	}



	/**
	 * @return the ownerId
	 */
	public User getOwnerId() {
		return ownerId;
	}



	/**
	 * @param ownerId the ownerId to set
	 */
	public void setOwnerId(User ownerId) {
		this.ownerId = ownerId;
	}



	/**
	 * @return the createId
	 */
	public User getCreateId() {
		return createId;
	}



	/**
	 * @param createId the createId to set
	 */
	public void setCreateId(User createId) {
		this.createId = createId;
	}



	/**
	 * @return the maintId
	 */
	public User getMaintId() {
		return maintId;
	}



	/**
	 * @param maintId the maintId to set
	 */
	public void setMaintId(User maintId) {
		this.maintId = maintId;
	}



	public int compareTo(Object obj){
      String c1 = getTitle();
      String c2 = ((CR_Report)obj).getTitle();

      return (c1 == null || c2 == null) ? 1 : c1.compareTo(c2);
    }

}