summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-analytics/src/main/java/org/openecomp/portalsdk/analytics/system/fusion/domain/ReportInfo.java
diff options
context:
space:
mode:
authorChristopher Lott (cl778h) <clott@research.att.com>2017-08-31 15:16:38 -0400
committerChristopher Lott (cl778h) <clott@research.att.com>2017-08-31 15:42:50 -0400
commit7f535078ef80a7b7efa3e3325bfccb994fbd00e8 (patch)
tree66d908df2eb7cf0b048f754eac6b44619255eb8a /ecomp-sdk/epsdk-analytics/src/main/java/org/openecomp/portalsdk/analytics/system/fusion/domain/ReportInfo.java
parent224487bc124df7988442a60d72d4aa106697306b (diff)
Rename packages to org.onap in 1.4.0-SNAPSHOT
19 - remove openecomp 72 - remediate Sonar scan issues 79 - removed unwanted left menu under Report 90 - apply approved license text Issue: PORTAL-19, PORTAL-72, PORTAL-79, PORTAL-90 Change-Id: I41a0ef5fba623d2242574bd15f2d9fb8029a496c Signed-off-by: Christopher Lott (cl778h) <clott@research.att.com>
Diffstat (limited to 'ecomp-sdk/epsdk-analytics/src/main/java/org/openecomp/portalsdk/analytics/system/fusion/domain/ReportInfo.java')
-rw-r--r--ecomp-sdk/epsdk-analytics/src/main/java/org/openecomp/portalsdk/analytics/system/fusion/domain/ReportInfo.java159
1 files changed, 0 insertions, 159 deletions
diff --git a/ecomp-sdk/epsdk-analytics/src/main/java/org/openecomp/portalsdk/analytics/system/fusion/domain/ReportInfo.java b/ecomp-sdk/epsdk-analytics/src/main/java/org/openecomp/portalsdk/analytics/system/fusion/domain/ReportInfo.java
deleted file mode 100644
index 2511989f..00000000
--- a/ecomp-sdk/epsdk-analytics/src/main/java/org/openecomp/portalsdk/analytics/system/fusion/domain/ReportInfo.java
+++ /dev/null
@@ -1,159 +0,0 @@
-/*-
- * ================================================================================
- * 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;
-
-public class ReportInfo {
-
- private Long repId;
- private String title;
- private String createUser;
- private String ownerName;
- private Date createDate;
- private Long lastAccessed = -1L;
- private Long lastWeekAccess;
- private Long lastMonthAccess;
- private Long lastYearAccess;
- private Long userAccessCount;
- /**
- * @return the repId
- */
- public Long getRepId() {
- return repId;
- }
- /**
- * @param repId the repId to set
- */
- public void setRepId(Long repId) {
- this.repId = repId;
- }
- /**
- * @return the title
- */
- public String getTitle() {
- return title;
- }
- /**
- * @param title the title to set
- */
- public void setTitle(String title) {
- this.title = title;
- }
- /**
- * @return the createUser
- */
- public String getCreateUser() {
- return createUser;
- }
- /**
- * @param createUser the createUser to set
- */
- public void setCreateUser(String createUser) {
- this.createUser = createUser;
- }
- /**
- * @return the ownerName
- */
- public String getOwnerName() {
- return ownerName;
- }
- /**
- * @param ownerName the ownerName to set
- */
- public void setOwnerName(String ownerName) {
- this.ownerName = ownerName;
- }
- /**
- * @return the createDate
- */
- public Date getCreateDate() {
- return createDate;
- }
- /**
- * @param createDate the createDate to set
- */
- public void setCreateDate(Date createDate) {
- this.createDate = createDate;
- }
- /**
- * @return the lastAccessed
- */
- public Long getLastAccessed() {
- return lastAccessed;
- }
- /**
- * @param lastAccessed the lastAccessed to set
- */
- public void setLastAccessed(Long lastAccessed) {
- this.lastAccessed = lastAccessed;
- }
- /**
- * @return the lastWeekAccess
- */
- public Long getLastWeekAccess() {
- return lastWeekAccess;
- }
- /**
- * @param lastWeekAccess the lastWeekAccess to set
- */
- public void setLastWeekAccess(Long lastWeekAccess) {
- this.lastWeekAccess = lastWeekAccess;
- }
- /**
- * @return the lastMonthAccess
- */
- public Long getLastMonthAccess() {
- return lastMonthAccess;
- }
- /**
- * @param lastMonthAccess the lastMonthAccess to set
- */
- public void setLastMonthAccess(Long lastMonthAccess) {
- this.lastMonthAccess = lastMonthAccess;
- }
- /**
- * @return the lastYearAccess
- */
- public Long getLastYearAccess() {
- return lastYearAccess;
- }
- /**
- * @param lastYearAccess the lastYearAccess to set
- */
- public void setLastYearAccess(Long lastYearAccess) {
- this.lastYearAccess = lastYearAccess;
- }
- /**
- * @return the userAccessCount
- */
- public Long getUserAccessCount() {
- return userAccessCount;
- }
- /**
- * @param userAccessCount the userAccessCount to set
- */
- public void setUserAccessCount(Long userAccessCount) {
- this.userAccessCount = userAccessCount;
- }
-
-
-
-}