2 * ============LICENSE_START==========================================
4 * ===================================================================
5 * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6 * ===================================================================
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
13 * http://www.apache.org/licenses/LICENSE-2.0
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.
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
26 * https://creativecommons.org/licenses/by/4.0/
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.
34 * ============LICENSE_END============================================
36 * ECOMP is a trademark and service mark of AT&T Intellectual Property.
38 package org.onap.portalsdk.analytics.system.fusion.domain;
40 import java.util.Date;
42 public class ReportInfo {
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;
57 public Long getRepId() {
61 * @param repId the repId to set
63 public void setRepId(Long repId) {
69 public String getTitle() {
73 * @param title the title to set
75 public void setTitle(String title) {
79 * @return the createUser
81 public String getCreateUser() {
85 * @param createUser the createUser to set
87 public void setCreateUser(String createUser) {
88 this.createUser = createUser;
91 * @return the ownerName
93 public String getOwnerName() {
97 * @param ownerName the ownerName to set
99 public void setOwnerName(String ownerName) {
100 this.ownerName = ownerName;
103 * @return the createDate
105 public Date getCreateDate() {
109 * @param createDate the createDate to set
111 public void setCreateDate(Date createDate) {
112 this.createDate = createDate;
115 * @return the lastAccessed
117 public Long getLastAccessed() {
121 * @param lastAccessed the lastAccessed to set
123 public void setLastAccessed(Long lastAccessed) {
124 this.lastAccessed = lastAccessed;
127 * @return the lastWeekAccess
129 public Long getLastWeekAccess() {
130 return lastWeekAccess;
133 * @param lastWeekAccess the lastWeekAccess to set
135 public void setLastWeekAccess(Long lastWeekAccess) {
136 this.lastWeekAccess = lastWeekAccess;
139 * @return the lastMonthAccess
141 public Long getLastMonthAccess() {
142 return lastMonthAccess;
145 * @param lastMonthAccess the lastMonthAccess to set
147 public void setLastMonthAccess(Long lastMonthAccess) {
148 this.lastMonthAccess = lastMonthAccess;
151 * @return the lastYearAccess
153 public Long getLastYearAccess() {
154 return lastYearAccess;
157 * @param lastYearAccess the lastYearAccess to set
159 public void setLastYearAccess(Long lastYearAccess) {
160 this.lastYearAccess = lastYearAccess;
163 * @return the userAccessCount
165 public Long getUserAccessCount() {
166 return userAccessCount;
169 * @param userAccessCount the userAccessCount to set
171 public void setUserAccessCount(Long userAccessCount) {
172 this.userAccessCount = userAccessCount;