summaryrefslogtreecommitdiffstats
path: root/base/common/src/com/netscape/certsrv/base/DataCollection.java
diff options
context:
space:
mode:
Diffstat (limited to 'base/common/src/com/netscape/certsrv/base/DataCollection.java')
-rw-r--r--base/common/src/com/netscape/certsrv/base/DataCollection.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/base/common/src/com/netscape/certsrv/base/DataCollection.java b/base/common/src/com/netscape/certsrv/base/DataCollection.java
index f5f46bcb8..ecbef0a6b 100644
--- a/base/common/src/com/netscape/certsrv/base/DataCollection.java
+++ b/base/common/src/com/netscape/certsrv/base/DataCollection.java
@@ -30,15 +30,15 @@ import org.jboss.resteasy.plugins.providers.atom.Link;
*/
public class DataCollection<E> {
- Integer total;
+ int total;
Collection<E> entries = new ArrayList<E>();
Collection<Link> links = new ArrayList<Link>();
- public Integer getTotal() {
+ public int getTotal() {
return total;
}
- public void setTotal(Integer total) {
+ public void setTotal(int total) {
this.total = total;
}