Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
adapt
ace
Commits
5d559c9f
Commit
5d559c9f
authored
Sep 01, 2016
by
Michael Ritter
Browse files
Create class for mapping an IngestSummary
parent
a7d89399
Changes
1
Hide whitespace changes
Inline
Side-by-side
ace-am/src/main/java/edu/umiacs/ace/stats/IngestSummary.java
0 → 100644
View file @
5d559c9f
package
edu.umiacs.ace.stats
;
import
java.math.BigDecimal
;
import
java.sql.Timestamp
;
/**
* A summary of a collection
*
* Created by shake on 8/29/16.
*/
public
final
class
IngestSummary
{
public
final
Timestamp
date
;
public
final
String
collection
;
public
final
String
group
;
public
final
Long
count
;
public
final
BigDecimal
size
;
public
IngestSummary
(
Timestamp
date
,
String
collection
,
String
group
,
Long
count
,
BigDecimal
size
)
{
this
.
date
=
date
;
this
.
collection
=
collection
;
this
.
group
=
group
;
this
.
count
=
count
;
this
.
size
=
size
;
}
public
Timestamp
getDate
()
{
return
date
;
}
public
String
getCollection
()
{
return
collection
;
}
public
String
getGroup
()
{
return
group
;
}
public
Long
getCount
()
{
return
count
;
}
public
BigDecimal
getSize
()
{
return
size
;
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment