diff --git a/components/application-mgt/org.wso2.carbon.device.application.mgt.core/src/main/java/org/wso2/carbon/device/application/mgt/core/config/PaginationConfiguration.java b/components/application-mgt/org.wso2.carbon.device.application.mgt.core/src/main/java/org/wso2/carbon/device/application/mgt/core/config/PaginationConfiguration.java index 8905b6de95..03be1dadc2 100644 --- a/components/application-mgt/org.wso2.carbon.device.application.mgt.core/src/main/java/org/wso2/carbon/device/application/mgt/core/config/PaginationConfiguration.java +++ b/components/application-mgt/org.wso2.carbon.device.application.mgt.core/src/main/java/org/wso2/carbon/device/application/mgt/core/config/PaginationConfiguration.java @@ -28,11 +28,6 @@ import javax.xml.bind.annotation.XmlRootElement; public class PaginationConfiguration { private int commentListPageSize; -// private int groupListPageSize; -// private int operationListPageSize; -// private int notificationListPageSize; -// private int activityListPageSize; -// private int topicListPageSize; public int getCommentListPageSize() { return commentListPageSize; @@ -43,50 +38,4 @@ public class PaginationConfiguration { this.commentListPageSize = commentListPageSize; } -// public int getGroupListPageSize() { -// return groupListPageSize; -// } -// -// @XmlElement(name = "GroupListPageSize", required = true) -// public void setGroupListPageSize(int groupListPageSize) { -// this.groupListPageSize = groupListPageSize; -// } -// -// public int getOperationListPageSize() { -// return operationListPageSize; -// } -// -// @XmlElement(name = "OperationListPageSize", required = true) -// public void setOperationListPageSize(int operationListPageSize) { -// this.operationListPageSize = operationListPageSize; -// } -// -// public int getNotificationListPageSize() { -// return notificationListPageSize; -// } -// -// @XmlElement(name = "NotificationListPageSize", required = true) -// public void setNotificationListPageSize(int notificationListPageSize) { -// this.notificationListPageSize = notificationListPageSize; -// } -// -// public int getActivityListPageSize() { -// return activityListPageSize; -// } -// -// @XmlElement(name = "ActivityListPageSize", required = true) -// public void setActivityListPageSize(int activityListPageSize) { -// this.activityListPageSize = activityListPageSize; -// } -// -// public int getTopicListPageSize() { -// return deviceListPageSize; -// } -// -// @XmlElement(name = "TopicListPageSize", required = true) -// public void setTopicListPageSize(int topicListPageSize) { -// this.topicListPageSize = topicListPageSize; -// } - - }