cd276a18e0c04dd0ef82bdc4f44a52753a8b4b4a
[portal/sdk.git] /
1 /*
2  * ============LICENSE_START==========================================
3  * ONAP Portal SDK
4  * ===================================================================
5  * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  * ===================================================================
7  *
8  * Unless otherwise specified, all software contained herein is licensed
9  * under the Apache License, Version 2.0 (the "License");
10  * you may not use this software except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *             http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  *
21  * Unless otherwise specified, all documentation contained herein is licensed
22  * under the Creative Commons License, Attribution 4.0 Intl. (the "License");
23  * you may not use this documentation except in compliance with the License.
24  * You may obtain a copy of the License at
25  *
26  *             https://creativecommons.org/licenses/by/4.0/
27  *
28  * Unless required by applicable law or agreed to in writing, documentation
29  * distributed under the License is distributed on an "AS IS" BASIS,
30  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
31  * See the License for the specific language governing permissions and
32  * limitations under the License.
33  *
34  * ============LICENSE_END============================================
35  *
36  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
37  */
38 package org.onap.portalsdk.analytics.system.fusion.domain;
39
40 import java.util.Date;
41
42 public class ReportInfo {
43
44     private Long        repId;
45         private String  title;
46     private String      createUser;
47     private String  ownerName;    
48     private Date        createDate;
49     private Long        lastAccessed = -1L;
50     private Long        lastWeekAccess;
51     private Long        lastMonthAccess;
52     private Long        lastYearAccess;
53     private Long        userAccessCount;
54         /**
55          * @return the repId
56          */
57         public Long getRepId() {
58                 return repId;
59         }
60         /**
61          * @param repId the repId to set
62          */
63         public void setRepId(Long repId) {
64                 this.repId = repId;
65         }
66         /**
67          * @return the title
68          */
69         public String getTitle() {
70                 return title;
71         }
72         /**
73          * @param title the title to set
74          */
75         public void setTitle(String title) {
76                 this.title = title;
77         }
78         /**
79          * @return the createUser
80          */
81         public String getCreateUser() {
82                 return createUser;
83         }
84         /**
85          * @param createUser the createUser to set
86          */
87         public void setCreateUser(String createUser) {
88                 this.createUser = createUser;
89         }
90         /**
91          * @return the ownerName
92          */
93         public String getOwnerName() {
94                 return ownerName;
95         }
96         /**
97          * @param ownerName the ownerName to set
98          */
99         public void setOwnerName(String ownerName) {
100                 this.ownerName = ownerName;
101         }
102         /**
103          * @return the createDate
104          */
105         public Date getCreateDate() {
106                 return createDate;
107         }
108         /**
109          * @param createDate the createDate to set
110          */
111         public void setCreateDate(Date createDate) {
112                 this.createDate = createDate;
113         }
114         /**
115          * @return the lastAccessed
116          */
117         public Long getLastAccessed() {
118                 return lastAccessed;
119         }
120         /**
121          * @param lastAccessed the lastAccessed to set
122          */
123         public void setLastAccessed(Long lastAccessed) {
124                 this.lastAccessed = lastAccessed;
125         }
126         /**
127          * @return the lastWeekAccess
128          */
129         public Long getLastWeekAccess() {
130                 return lastWeekAccess;
131         }
132         /**
133          * @param lastWeekAccess the lastWeekAccess to set
134          */
135         public void setLastWeekAccess(Long lastWeekAccess) {
136                 this.lastWeekAccess = lastWeekAccess;
137         }
138         /**
139          * @return the lastMonthAccess
140          */
141         public Long getLastMonthAccess() {
142                 return lastMonthAccess;
143         }
144         /**
145          * @param lastMonthAccess the lastMonthAccess to set
146          */
147         public void setLastMonthAccess(Long lastMonthAccess) {
148                 this.lastMonthAccess = lastMonthAccess;
149         }
150         /**
151          * @return the lastYearAccess
152          */
153         public Long getLastYearAccess() {
154                 return lastYearAccess;
155         }
156         /**
157          * @param lastYearAccess the lastYearAccess to set
158          */
159         public void setLastYearAccess(Long lastYearAccess) {
160                 this.lastYearAccess = lastYearAccess;
161         }
162         /**
163          * @return the userAccessCount
164          */
165         public Long getUserAccessCount() {
166                 return userAccessCount;
167         }
168         /**
169          * @param userAccessCount the userAccessCount to set
170          */
171         public void setUserAccessCount(Long userAccessCount) {
172                 this.userAccessCount = userAccessCount;
173         }
174     
175     
176         
177 }