Fabio Sinibaldi 2018-07-20 09:57:43 +00:00
parent 9ee3b6182c
commit 3db1a24c76
79 changed files with 97 additions and 78 deletions

View File

@ -30,6 +30,7 @@ import org.gcube.accounting.accounting.summary.access.model.update.UpdateReport;
import lombok.extern.slf4j.Slf4j;
import static java.time.temporal.TemporalAdjusters.*;
@Slf4j
public class AccountingDaoImpl implements AccountingDao{
@ -64,6 +65,10 @@ public class AccountingDaoImpl implements AccountingDao{
log.info("Loading report {} for {} between {} and {} ",resolution,desc.getId(),formatter.format(fromDate),formatter.format(toDate));
long startReportTime=System.currentTimeMillis();
fromDate=fixLowerBound(fromDate, resolution);
toDate=fixUpperBound(toDate, resolution);
if(fromDate.isAfter(toDate)) throw new ParameterException("Irregular time interval: \"From\" parameter cannot be after \"To\" parameter.");
int timeSlices=getRangeSize(fromDate, toDate, resolution);
@ -132,8 +137,20 @@ public class AccountingDaoImpl implements AccountingDao{
}
private LocalDateTime fixLowerBound(LocalDateTime toFix,MeasureResolution resolution) throws ParameterException {
switch(resolution) {
case MONTHLY : return toFix.with(firstDayOfMonth()).withHour(0).withMinute(0).withSecond(0).withNano(0);
default : throw new ParameterException("Invalid resolution "+resolution);
}
}
private LocalDateTime fixUpperBound(LocalDateTime toFix,MeasureResolution resolution) throws ParameterException {
switch(resolution) {
case MONTHLY : return toFix.with(lastDayOfMonth()).withHour(23).withMinute(59).withSecond(59).withNano(999999999);
default : throw new ParameterException("Invalid resolution "+resolution);
}
}
@Override
public ScopeDescriptor getTree(Object request) throws Exception {

View File

@ -24,10 +24,12 @@ public class SimpleTest {
System.out.println(desc);
Date from=new GregorianCalendar(2018,0,1).getTime();
Date to=new GregorianCalendar(2018,7,1).getTime();
Date from=new Date(1514764800000l);
// Date to=from;
// Date from=new GregorianCalendar(2018,0,1).getTime();
// Date to=new GregorianCalendar(2018,7,1).getTime();
Date to=from;
scan(desc,from,to,dao);

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>All Classes (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>All Classes (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Constant Field Values (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Deprecated List (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>API Help (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Index (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Accounting Summary Access 1.0.0-SNAPSHOT API</title>
<script type="text/javascript">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>AccountingDao (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ParameterException (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Interface org.gcube.accounting.accounting.summary.access.AccountingDao (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.gcube.accounting.accounting.summary.access.ParameterException (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>AccountingDaoImpl (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>BasicConnectionManager (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>BasicContextTreeProvider (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ConnectionManager (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ContextTreeProvider (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>DBStructure.CONTEXTS (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>DBStructure.DIMENSIONS (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>DBStructure.Measure (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>DBStructure (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Queries (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.gcube.accounting.accounting.summary.access.impl.AccountingDaoImpl (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.gcube.accounting.accounting.summary.access.impl.BasicConnectionManager (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.gcube.accounting.accounting.summary.access.impl.BasicContextTreeProvider (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Interface org.gcube.accounting.accounting.summary.access.impl.ConnectionManager (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Interface org.gcube.accounting.accounting.summary.access.impl.ContextTreeProvider (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.gcube.accounting.accounting.summary.access.impl.DBStructure.CONTEXTS (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.gcube.accounting.accounting.summary.access.impl.DBStructure.DIMENSIONS (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.gcube.accounting.accounting.summary.access.impl.DBStructure.Measure (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.gcube.accounting.accounting.summary.access.impl.DBStructure (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.gcube.accounting.accounting.summary.access.impl.Queries (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>org.gcube.accounting.accounting.summary.access.impl (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>org.gcube.accounting.accounting.summary.access.impl (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>org.gcube.accounting.accounting.summary.access.impl Class Hierarchy (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Package org.gcube.accounting.accounting.summary.access.impl (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>MeasureResolution (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Record (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Report (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ReportElement (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ScopeDescriptor (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Series (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.gcube.accounting.accounting.summary.access.model.MeasureResolution (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.gcube.accounting.accounting.summary.access.model.Record (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.gcube.accounting.accounting.summary.access.model.Report (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.gcube.accounting.accounting.summary.access.model.ReportElement (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.gcube.accounting.accounting.summary.access.model.ScopeDescriptor (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.gcube.accounting.accounting.summary.access.model.Series (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Dimension (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.gcube.accounting.accounting.summary.access.model.internal.Dimension (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>org.gcube.accounting.accounting.summary.access.model.internal (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>org.gcube.accounting.accounting.summary.access.model.internal (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>org.gcube.accounting.accounting.summary.access.model.internal Class Hierarchy (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Package org.gcube.accounting.accounting.summary.access.model.internal (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>org.gcube.accounting.accounting.summary.access.model (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>org.gcube.accounting.accounting.summary.access.model (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>org.gcube.accounting.accounting.summary.access.model Class Hierarchy (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Package org.gcube.accounting.accounting.summary.access.model (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>AccountingRecord (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>UpdateReport (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.gcube.accounting.accounting.summary.access.model.update.AccountingRecord (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.gcube.accounting.accounting.summary.access.model.update.UpdateReport (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>org.gcube.accounting.accounting.summary.access.model.update (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>org.gcube.accounting.accounting.summary.access.model.update (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>org.gcube.accounting.accounting.summary.access.model.update Class Hierarchy (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Package org.gcube.accounting.accounting.summary.access.model.update (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>org.gcube.accounting.accounting.summary.access (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>org.gcube.accounting.accounting.summary.access (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>org.gcube.accounting.accounting.summary.access Class Hierarchy (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Package org.gcube.accounting.accounting.summary.access (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Overview List (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Overview (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Class Hierarchy (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:43:28 CEST 2018 -->
<!-- Generated by javadoc (1.8.0_171) on Thu Jul 19 18:44:17 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Serialized Form (Accounting Summary Access 1.0.0-SNAPSHOT API)</title>
<meta name="date" content="2018-07-19">

View File

@ -1,5 +1,5 @@
#Generated by Maven
#Thu Jul 19 18:43:27 CEST 2018
#Thu Jul 19 18:44:16 CEST 2018
version=1.0.0-SNAPSHOT
groupId=org.gcube.accounting
artifactId=accounting-summary-access