diff --git a/src/main/java/org/gcube/accounting/accounting/summary/access/impl/AccountingDaoImpl.java b/src/main/java/org/gcube/accounting/accounting/summary/access/impl/AccountingDaoImpl.java index cdff295..7a23f12 100644 --- a/src/main/java/org/gcube/accounting/accounting/summary/access/impl/AccountingDaoImpl.java +++ b/src/main/java/org/gcube/accounting/accounting/summary/access/impl/AccountingDaoImpl.java @@ -61,18 +61,27 @@ public class AccountingDaoImpl implements AccountingDao{ DateTimeFormatter formatter=getFormatter(resolution); LocalDateTime fromDate=from.toInstant().atZone(ZoneId.systemDefault()).toLocalDateTime(); LocalDateTime toDate=to.toInstant().atZone(ZoneId.systemDefault()).toLocalDateTime(); - long startReportTime=System.currentTimeMillis(); - log.info("Loading report {} for {} between {} and {} ",resolution,desc.getId(),formatter.format(fromDate),formatter.format(toDate)); + long startReportTime=System.currentTimeMillis(); + + + if(fromDate.isAfter(toDate)) throw new ParameterException("Irregular time interval: \"From\" parameter cannot be after \"To\" parameter."); + int timeSlices=getRangeSize(fromDate, toDate, resolution); + if(timeSlices==0) { + log.debug("Time slices is {}. Going to increment \"To\" parameter.",timeSlices); + toDate=increment(toDate,resolution,1); + timeSlices=getRangeSize(fromDate, toDate, resolution); + if(timeSlices==0) throw new RuntimeException("Unexpected Exception"); + } + Connection conn=connectionManager.getConnection(); Queries queries=new Queries(conn); - int timeSlices=getRangeSize(from, to, resolution); //load available dimensions in time slice - ResultSet dimensionRS=queries.getAvailableDimensions(from, to, desc, resolution); + ResultSet dimensionRS=queries.getAvailableDimensions(fromDate, toDate, desc, resolution); LinkedList foundDimensions=new LinkedList<>(); while(dimensionRS.next()){ String id=dimensionRS.getString(DIMENSIONS.ID); @@ -93,13 +102,13 @@ public class AccountingDaoImpl implements AccountingDao{ // Report 1 series for selected Scope reports.add(new ReportElement(desc.getName()+" "+yLabel,category, - xLabel,yLabel,new Series[]{getSeries(queries, from, to, entry, desc, resolution, timeSlices)})); + xLabel,yLabel,new Series[]{getSeries(queries, fromDate, toDate, entry, desc, resolution, timeSlices)})); // Report 2 series for each children if(desc.hasChildren()) { LinkedList childrenSeries=new LinkedList<>(); for(ScopeDescriptor child:desc.getChildren()){ - childrenSeries.add(getSeries(queries, from, to, entry, child, resolution, timeSlices)); + childrenSeries.add(getSeries(queries, fromDate, toDate, entry, child, resolution, timeSlices)); } reports.add(new ReportElement(desc.getName()+" children "+yLabel,category, xLabel,yLabel,childrenSeries.toArray(new Series[childrenSeries.size()]))); @@ -231,10 +240,10 @@ public class AccountingDaoImpl implements AccountingDao{ - private static final int getRangeSize(Date from, Date to, MeasureResolution resolution) throws ParameterException { + private static final int getRangeSize(LocalDateTime from, LocalDateTime to, MeasureResolution resolution) throws ParameterException { log.debug("Evaluating time range between {} , {} [{}]",from,to,resolution); - Period p=Period.between(from.toInstant().atZone(ZoneId.systemDefault()).toLocalDate(), to.toInstant().atZone(ZoneId.systemDefault()).toLocalDate()); + Period p=Period.between(from.toLocalDate(), to.toLocalDate()); switch(resolution) { case MONTHLY : return p.getMonths()+(p.getYears()*12); default : throw new ParameterException("Invalid resolution "+resolution); @@ -246,7 +255,7 @@ public class AccountingDaoImpl implements AccountingDao{ private static LocalDateTime increment(LocalDateTime toIncrement,MeasureResolution res,int offset){ switch(res){ - case MONTHLY : return toIncrement.plusMonths(1); + case MONTHLY : return toIncrement.plusMonths(offset); default : throw new RuntimeException("Unexpected Resolution "+res); } } @@ -263,14 +272,14 @@ public class AccountingDaoImpl implements AccountingDao{ - private Series getSeries(Queries queries, Date from, Date to, Dimension dim, ScopeDescriptor scope, MeasureResolution res, int timeSlices) throws SQLException{ + private Series getSeries(Queries queries, LocalDateTime from, LocalDateTime to, Dimension dim, ScopeDescriptor scope, MeasureResolution res, int timeSlices) throws SQLException{ Record[] records=new Record[timeSlices]; PreparedStatement ps=queries.prepareMeasuresByDimension(scope, res); DateTimeFormatter formatter=getFormatter(res); + - - LocalDateTime toSetStartDate=from.toInstant().atZone(ZoneId.systemDefault()).toLocalDateTime(); + LocalDateTime toSetStartDate=from; for(int i=0;i=? AND "+Measure.TIME+"<=?", Measure.CONTEXT+" IN "+asIDSet(scope)); PreparedStatement toReturn= conn.prepareStatement(query); - toReturn.setLong(1, from.getTime()); - toReturn.setLong(2, to.getTime()); + toReturn.setLong(1, fromTime); + toReturn.setLong(2, toTime); - log.debug("Performing query {} with params {} and {} ",query,from.getTime(),to.getTime()); + log.debug("Performing query {} with params {} and {} ",query,fromTime,toTime); return toReturn.executeQuery(); } diff --git a/src/test/java/org/gcube/data/access/accounting/summary/access/test/SimpleTest.java b/src/test/java/org/gcube/data/access/accounting/summary/access/test/SimpleTest.java index efe45ec..1928a22 100644 --- a/src/test/java/org/gcube/data/access/accounting/summary/access/test/SimpleTest.java +++ b/src/test/java/org/gcube/data/access/accounting/summary/access/test/SimpleTest.java @@ -15,16 +15,19 @@ import org.gcube.accounting.accounting.summary.access.model.ScopeDescriptor; public class SimpleTest { public static void main(String[] args) throws ParameterException, Exception { - TokenSetter.set("/d4science.research-infrastructures.eu/gCubeApps"); - AccountingDao dao=AccountingDao.get(new DummyContextTreeProvider()); + TokenSetter.set("/gcube/devNext/NextNext"); + AccountingDao dao=AccountingDao.get(); +// AccountingDao dao=AccountingDao.get(new DummyContextTreeProvider()); ScopeDescriptor desc=dao.getTree(null); System.out.println(desc); - Date from=new GregorianCalendar(2015,1,1).getTime(); - Date to=new Date(System.currentTimeMillis()); + Date from=new GregorianCalendar(2018,1,1).getTime(); +// Date to=new Date(System.currentTimeMillis()); + + Date to=from; scan(desc,from,to,dao); diff --git a/target/accounting-summary-access-1.0.0-SNAPSHOT-javadoc.jar b/target/accounting-summary-access-1.0.0-SNAPSHOT-javadoc.jar new file mode 100644 index 0000000..23d6a18 Binary files /dev/null and b/target/accounting-summary-access-1.0.0-SNAPSHOT-javadoc.jar differ diff --git a/target/accounting-summary-access-1.0.0-SNAPSHOT-sources.jar b/target/accounting-summary-access-1.0.0-SNAPSHOT-sources.jar new file mode 100644 index 0000000..d3f9c30 Binary files /dev/null and b/target/accounting-summary-access-1.0.0-SNAPSHOT-sources.jar differ diff --git a/target/accounting-summary-access-1.0.0-SNAPSHOT.jar b/target/accounting-summary-access-1.0.0-SNAPSHOT.jar new file mode 100644 index 0000000..c263940 Binary files /dev/null and b/target/accounting-summary-access-1.0.0-SNAPSHOT.jar differ diff --git a/target/apidocs/allclasses-frame.html b/target/apidocs/allclasses-frame.html new file mode 100644 index 0000000..86f8a8d --- /dev/null +++ b/target/apidocs/allclasses-frame.html @@ -0,0 +1,40 @@ + + + + + + +All Classes (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + +

All Classes

+ + + diff --git a/target/apidocs/allclasses-noframe.html b/target/apidocs/allclasses-noframe.html new file mode 100644 index 0000000..d6d4597 --- /dev/null +++ b/target/apidocs/allclasses-noframe.html @@ -0,0 +1,40 @@ + + + + + + +All Classes (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + +

All Classes

+ + + diff --git a/target/apidocs/constant-values.html b/target/apidocs/constant-values.html new file mode 100644 index 0000000..42fdf9c --- /dev/null +++ b/target/apidocs/constant-values.html @@ -0,0 +1,263 @@ + + + + + + +Constant Field Values (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Constant Field Values

+

Contents

+ +
+
+ + +

org.gcube.*

+ +
+ +
+ + + + + + + +
+ + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/deprecated-list.html b/target/apidocs/deprecated-list.html new file mode 100644 index 0000000..655fd93 --- /dev/null +++ b/target/apidocs/deprecated-list.html @@ -0,0 +1,126 @@ + + + + + + +Deprecated List (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Deprecated API

+

Contents

+
+ +
+ + + + + + + +
+ + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/help-doc.html b/target/apidocs/help-doc.html new file mode 100644 index 0000000..dea2472 --- /dev/null +++ b/target/apidocs/help-doc.html @@ -0,0 +1,231 @@ + + + + + + +API Help (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

How This API Document Is Organized

+
This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.
+
+
+
    +
  • +

    Overview

    +

    The Overview page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.

    +
  • +
  • +

    Package

    +

    Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain six categories:

    +
      +
    • Interfaces (italic)
    • +
    • Classes
    • +
    • Enums
    • +
    • Exceptions
    • +
    • Errors
    • +
    • Annotation Types
    • +
    +
  • +
  • +

    Class/Interface

    +

    Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:

    +
      +
    • Class inheritance diagram
    • +
    • Direct Subclasses
    • +
    • All Known Subinterfaces
    • +
    • All Known Implementing Classes
    • +
    • Class/interface declaration
    • +
    • Class/interface description
    • +
    +
      +
    • Nested Class Summary
    • +
    • Field Summary
    • +
    • Constructor Summary
    • +
    • Method Summary
    • +
    +
      +
    • Field Detail
    • +
    • Constructor Detail
    • +
    • Method Detail
    • +
    +

    Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.

    +
  • +
  • +

    Annotation Type

    +

    Each annotation type has its own separate page with the following sections:

    +
      +
    • Annotation Type declaration
    • +
    • Annotation Type description
    • +
    • Required Element Summary
    • +
    • Optional Element Summary
    • +
    • Element Detail
    • +
    +
  • +
  • +

    Enum

    +

    Each enum has its own separate page with the following sections:

    +
      +
    • Enum declaration
    • +
    • Enum description
    • +
    • Enum Constant Summary
    • +
    • Enum Constant Detail
    • +
    +
  • +
  • +

    Use

    +

    Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.

    +
  • +
  • +

    Tree (Class Hierarchy)

    +

    There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with java.lang.Object. The interfaces do not inherit from java.lang.Object.

    +
      +
    • When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.
    • +
    • When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.
    • +
    +
  • +
  • +

    Deprecated API

    +

    The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.

    +
  • +
  • +

    Index

    +

    The Index contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.

    +
  • +
  • +

    Prev/Next

    +

    These links take you to the next or previous class, interface, package, or related page.

    +
  • +
  • +

    Frames/No Frames

    +

    These links show and hide the HTML frames. All pages are available with or without frames.

    +
  • +
  • +

    All Classes

    +

    The All Classes link shows all classes and interfaces except non-static nested types.

    +
  • +
  • +

    Serialized Form

    +

    Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.

    +
  • +
  • +

    Constant Field Values

    +

    The Constant Field Values page lists the static final fields and their values.

    +
  • +
+This help file applies to API documentation generated using the standard doclet.
+ +
+ + + + + + + +
+ + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/index-all.html b/target/apidocs/index-all.html new file mode 100644 index 0000000..4a3db6c --- /dev/null +++ b/target/apidocs/index-all.html @@ -0,0 +1,450 @@ + + + + + + +Index (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
A B C D E G H I L M O P Q R S T U V  + + +

A

+
+
AccountingDao - Interface in org.gcube.accounting.accounting.summary.access
+
 
+
AccountingDaoImpl - Class in org.gcube.accounting.accounting.summary.access.impl
+
 
+
AccountingDaoImpl() - Constructor for class org.gcube.accounting.accounting.summary.access.impl.AccountingDaoImpl
+
 
+
AccountingDaoImpl(ContextTreeProvider, ConnectionManager) - Constructor for class org.gcube.accounting.accounting.summary.access.impl.AccountingDaoImpl
+
 
+
AccountingRecord - Class in org.gcube.accounting.accounting.summary.access.model.update
+
 
+
AccountingRecord() - Constructor for class org.gcube.accounting.accounting.summary.access.model.update.AccountingRecord
+
 
+
AGGREGATED_MEASURE - Static variable in class org.gcube.accounting.accounting.summary.access.impl.DBStructure.DIMENSIONS
+
 
+
asIDSet(ScopeDescriptor) - Static method in class org.gcube.accounting.accounting.summary.access.impl.Queries
+
 
+
+ + + +

B

+
+
BasicConnectionManager - Class in org.gcube.accounting.accounting.summary.access.impl
+
 
+
BasicConnectionManager() - Constructor for class org.gcube.accounting.accounting.summary.access.impl.BasicConnectionManager
+
 
+
BasicContextTreeProvider - Class in org.gcube.accounting.accounting.summary.access.impl
+
 
+
BasicContextTreeProvider() - Constructor for class org.gcube.accounting.accounting.summary.access.impl.BasicContextTreeProvider
+
 
+
+ + + +

C

+
+
ConnectionManager - Interface in org.gcube.accounting.accounting.summary.access.impl
+
 
+
CONTEXT - Static variable in class org.gcube.accounting.accounting.summary.access.impl.DBStructure.Measure
+
 
+
CONTEXTS() - Constructor for class org.gcube.accounting.accounting.summary.access.impl.DBStructure.CONTEXTS
+
 
+
ContextTreeProvider - Interface in org.gcube.accounting.accounting.summary.access.impl
+
 
+
+ + + +

D

+
+
DBStructure - Class in org.gcube.accounting.accounting.summary.access.impl
+
 
+
DBStructure() - Constructor for class org.gcube.accounting.accounting.summary.access.impl.DBStructure
+
 
+
DBStructure.CONTEXTS - Class in org.gcube.accounting.accounting.summary.access.impl
+
 
+
DBStructure.DIMENSIONS - Class in org.gcube.accounting.accounting.summary.access.impl
+
 
+
DBStructure.Measure - Class in org.gcube.accounting.accounting.summary.access.impl
+
 
+
DIMENSION - Static variable in class org.gcube.accounting.accounting.summary.access.impl.DBStructure.Measure
+
 
+
Dimension - Class in org.gcube.accounting.accounting.summary.access.model.internal
+
 
+
Dimension() - Constructor for class org.gcube.accounting.accounting.summary.access.model.internal.Dimension
+
 
+
DIMENSIONS() - Constructor for class org.gcube.accounting.accounting.summary.access.impl.DBStructure.DIMENSIONS
+
 
+
+ + + +

E

+
+
equals(Object) - Method in class org.gcube.accounting.accounting.summary.access.model.internal.Dimension
+
 
+
equals(Object) - Method in class org.gcube.accounting.accounting.summary.access.model.ScopeDescriptor
+
 
+
+ + + +

G

+
+
get() - Static method in interface org.gcube.accounting.accounting.summary.access.AccountingDao
+
 
+
get(ContextTreeProvider) - Static method in interface org.gcube.accounting.accounting.summary.access.AccountingDao
+
 
+
getAvailableDimensions(Date, Date, ScopeDescriptor, MeasureResolution) - Method in class org.gcube.accounting.accounting.summary.access.impl.Queries
+
+
Returns Dimensions.* fields
+
+
getConnection() - Method in class org.gcube.accounting.accounting.summary.access.impl.BasicConnectionManager
+
 
+
getConnection() - Method in interface org.gcube.accounting.accounting.summary.access.impl.ConnectionManager
+
 
+
getContextInsertionPreparedStatement() - Method in class org.gcube.accounting.accounting.summary.access.impl.Queries
+
+
Returned parameters order is + ID,LABEL
+
+
getContexts() - Method in interface org.gcube.accounting.accounting.summary.access.AccountingDao
+
 
+
getContexts() - Method in class org.gcube.accounting.accounting.summary.access.impl.AccountingDaoImpl
+
 
+
getDimensionInsertionPreparedStatement() - Method in class org.gcube.accounting.accounting.summary.access.impl.Queries
+
+
Returned parameters order is + ID,LABEL,GROUP,AGGREGATED_MEASURE
+
+
getDimensions() - Method in interface org.gcube.accounting.accounting.summary.access.AccountingDao
+
 
+
getDimensions() - Method in class org.gcube.accounting.accounting.summary.access.impl.AccountingDaoImpl
+
 
+
getMeasureCount(String) - Method in class org.gcube.accounting.accounting.summary.access.impl.Queries
+
 
+
getMeasureInsertionPreparedStatement() - Method in class org.gcube.accounting.accounting.summary.access.impl.Queries
+
+
Returned parameters order is + Context, Dimension, Time, Measure, Measure + + NB : Measure is replicated in order to manage update on conflict
+
+
getReportByScope(ScopeDescriptor, Date, Date, MeasureResolution) - Method in interface org.gcube.accounting.accounting.summary.access.AccountingDao
+
 
+
getReportByScope(ScopeDescriptor, Date, Date, MeasureResolution) - Method in class org.gcube.accounting.accounting.summary.access.impl.AccountingDaoImpl
+
 
+
getTree(Object) - Method in interface org.gcube.accounting.accounting.summary.access.AccountingDao
+
 
+
getTree(Object) - Method in class org.gcube.accounting.accounting.summary.access.impl.AccountingDaoImpl
+
 
+
getTree(Object) - Method in class org.gcube.accounting.accounting.summary.access.impl.BasicContextTreeProvider
+
 
+
getTree(Object) - Method in interface org.gcube.accounting.accounting.summary.access.impl.ContextTreeProvider
+
 
+
GROUP - Static variable in class org.gcube.accounting.accounting.summary.access.impl.DBStructure.DIMENSIONS
+
 
+
+ + + +

H

+
+
hasChildren() - Method in class org.gcube.accounting.accounting.summary.access.model.ScopeDescriptor
+
 
+
hashCode() - Method in class org.gcube.accounting.accounting.summary.access.model.internal.Dimension
+
 
+
hashCode() - Method in class org.gcube.accounting.accounting.summary.access.model.ScopeDescriptor
+
 
+
+ + + +

I

+
+
ID - Static variable in class org.gcube.accounting.accounting.summary.access.impl.DBStructure.CONTEXTS
+
 
+
ID - Static variable in class org.gcube.accounting.accounting.summary.access.impl.DBStructure.DIMENSIONS
+
 
+
insertRecords(AccountingRecord...) - Method in interface org.gcube.accounting.accounting.summary.access.AccountingDao
+
 
+
insertRecords(AccountingRecord...) - Method in class org.gcube.accounting.accounting.summary.access.impl.AccountingDaoImpl
+
 
+
+ + + +

L

+
+
LABEL - Static variable in class org.gcube.accounting.accounting.summary.access.impl.DBStructure.CONTEXTS
+
 
+
LABEL - Static variable in class org.gcube.accounting.accounting.summary.access.impl.DBStructure.DIMENSIONS
+
 
+
listContexts() - Method in class org.gcube.accounting.accounting.summary.access.impl.Queries
+
 
+
listDimensions() - Method in class org.gcube.accounting.accounting.summary.access.impl.Queries
+
 
+
+ + + +

M

+
+
Measure() - Constructor for class org.gcube.accounting.accounting.summary.access.impl.DBStructure.Measure
+
 
+
MEASURE - Static variable in class org.gcube.accounting.accounting.summary.access.impl.DBStructure.Measure
+
 
+
MeasureResolution - Enum in org.gcube.accounting.accounting.summary.access.model
+
 
+
+ + + +

O

+
+
org.gcube.accounting.accounting.summary.access - package org.gcube.accounting.accounting.summary.access
+
 
+
org.gcube.accounting.accounting.summary.access.impl - package org.gcube.accounting.accounting.summary.access.impl
+
 
+
org.gcube.accounting.accounting.summary.access.model - package org.gcube.accounting.accounting.summary.access.model
+
 
+
org.gcube.accounting.accounting.summary.access.model.internal - package org.gcube.accounting.accounting.summary.access.model.internal
+
 
+
org.gcube.accounting.accounting.summary.access.model.update - package org.gcube.accounting.accounting.summary.access.model.update
+
 
+
+ + + +

P

+
+
ParameterException - Exception in org.gcube.accounting.accounting.summary.access
+
 
+
ParameterException() - Constructor for exception org.gcube.accounting.accounting.summary.access.ParameterException
+
 
+
ParameterException(String, Throwable, boolean, boolean) - Constructor for exception org.gcube.accounting.accounting.summary.access.ParameterException
+
 
+
ParameterException(String, Throwable) - Constructor for exception org.gcube.accounting.accounting.summary.access.ParameterException
+
 
+
ParameterException(String) - Constructor for exception org.gcube.accounting.accounting.summary.access.ParameterException
+
 
+
ParameterException(Throwable) - Constructor for exception org.gcube.accounting.accounting.summary.access.ParameterException
+
 
+
prepareMeasuresByDimension(ScopeDescriptor, MeasureResolution) - Method in class org.gcube.accounting.accounting.summary.access.impl.Queries
+
+
Prepares a statement for Getting Dim=? in time interval for the scope set + + PS params : + 1- long from + 2- long to + 3- String dimension
+
+
+ + + +

Q

+
+
Queries - Class in org.gcube.accounting.accounting.summary.access.impl
+
 
+
Queries() - Constructor for class org.gcube.accounting.accounting.summary.access.impl.Queries
+
 
+
+ + + +

R

+
+
Record - Class in org.gcube.accounting.accounting.summary.access.model
+
 
+
Record() - Constructor for class org.gcube.accounting.accounting.summary.access.model.Record
+
 
+
Report - Class in org.gcube.accounting.accounting.summary.access.model
+
 
+
Report() - Constructor for class org.gcube.accounting.accounting.summary.access.model.Report
+
 
+
ReportElement - Class in org.gcube.accounting.accounting.summary.access.model
+
 
+
ReportElement() - Constructor for class org.gcube.accounting.accounting.summary.access.model.ReportElement
+
 
+
+ + + +

S

+
+
ScopeDescriptor - Class in org.gcube.accounting.accounting.summary.access.model
+
 
+
ScopeDescriptor() - Constructor for class org.gcube.accounting.accounting.summary.access.model.ScopeDescriptor
+
 
+
Series - Class in org.gcube.accounting.accounting.summary.access.model
+
 
+
Series() - Constructor for class org.gcube.accounting.accounting.summary.access.model.Series
+
 
+
setTreeProvider(ContextTreeProvider) - Method in class org.gcube.accounting.accounting.summary.access.impl.AccountingDaoImpl
+
 
+
+ + + +

T

+
+
TABLENAME - Static variable in class org.gcube.accounting.accounting.summary.access.impl.DBStructure.CONTEXTS
+
 
+
TABLENAME - Static variable in class org.gcube.accounting.accounting.summary.access.impl.DBStructure.DIMENSIONS
+
 
+
TABLENAME - Static variable in class org.gcube.accounting.accounting.summary.access.impl.DBStructure.Measure
+
 
+
TIME - Static variable in class org.gcube.accounting.accounting.summary.access.impl.DBStructure.Measure
+
 
+
toString() - Method in class org.gcube.accounting.accounting.summary.access.model.Report
+
 
+
toString() - Method in class org.gcube.accounting.accounting.summary.access.model.ReportElement
+
 
+
toString() - Method in class org.gcube.accounting.accounting.summary.access.model.Series
+
 
+
+ + + +

U

+
+
UpdateReport - Class in org.gcube.accounting.accounting.summary.access.model.update
+
 
+
UpdateReport() - Constructor for class org.gcube.accounting.accounting.summary.access.model.update.UpdateReport
+
 
+
+ + + +

V

+
+
valueOf(String) - Static method in enum org.gcube.accounting.accounting.summary.access.model.MeasureResolution
+
+
Returns the enum constant of this type with the specified name.
+
+
values() - Static method in enum org.gcube.accounting.accounting.summary.access.model.MeasureResolution
+
+
Returns an array containing the constants of this enum type, in +the order they are declared.
+
+
+A B C D E G H I L M O P Q R S T U V 
+ +
+ + + + + + + +
+ + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/index.html b/target/apidocs/index.html new file mode 100644 index 0000000..f9d5e20 --- /dev/null +++ b/target/apidocs/index.html @@ -0,0 +1,76 @@ + + + + + + +Accounting Summary Access 1.0.0-SNAPSHOT API + + + + + + + + + +<noscript> +<div>JavaScript is disabled on your browser.</div> +</noscript> +<h2>Frame Alert</h2> +<p>This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to <a href="overview-summary.html">Non-frame version</a>.</p> + + + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/AccountingDao.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/AccountingDao.html new file mode 100644 index 0000000..96ed8a5 --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/AccountingDao.html @@ -0,0 +1,340 @@ + + + + + + +AccountingDao (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + + +
+
org.gcube.accounting.accounting.summary.access
+

Interface AccountingDao

+
+
+
+
    +
  • +
    +
    All Known Implementing Classes:
    +
    AccountingDaoImpl
    +
    +
    +
    +
    public interface AccountingDao
    +
  • +
+
+
+ +
+
+ +
+
+ + + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/ParameterException.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/ParameterException.html new file mode 100644 index 0000000..693bab2 --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/ParameterException.html @@ -0,0 +1,320 @@ + + + + + + +ParameterException (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + + +
+
org.gcube.accounting.accounting.summary.access
+

Class ParameterException

+
+
+ +
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ParameterException

        +
        public ParameterException()
        +
      • +
      + + + +
        +
      • +

        ParameterException

        +
        public ParameterException(String message,
        +                          Throwable cause,
        +                          boolean enableSuppression,
        +                          boolean writableStackTrace)
        +
      • +
      + + + +
        +
      • +

        ParameterException

        +
        public ParameterException(String message,
        +                          Throwable cause)
        +
      • +
      + + + +
        +
      • +

        ParameterException

        +
        public ParameterException(String message)
        +
      • +
      + + + +
        +
      • +

        ParameterException

        +
        public ParameterException(Throwable cause)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/class-use/AccountingDao.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/class-use/AccountingDao.html new file mode 100644 index 0000000..2a6b722 --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/class-use/AccountingDao.html @@ -0,0 +1,192 @@ + + + + + + +Uses of Interface org.gcube.accounting.accounting.summary.access.AccountingDao (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Interface
org.gcube.accounting.accounting.summary.access.AccountingDao

+
+
+ +
+ + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/class-use/ParameterException.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/class-use/ParameterException.html new file mode 100644 index 0000000..95a7f3d --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/class-use/ParameterException.html @@ -0,0 +1,198 @@ + + + + + + +Uses of Class org.gcube.accounting.accounting.summary.access.ParameterException (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.gcube.accounting.accounting.summary.access.ParameterException

+
+
+ +
+ + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/AccountingDaoImpl.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/AccountingDaoImpl.html new file mode 100644 index 0000000..28be18f --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/AccountingDaoImpl.html @@ -0,0 +1,407 @@ + + + + + + +AccountingDaoImpl (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + + +
+
org.gcube.accounting.accounting.summary.access.impl
+

Class AccountingDaoImpl

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.gcube.accounting.accounting.summary.access.impl.AccountingDaoImpl
    • +
    +
  • +
+
+ +
+
+ +
+
+ +
+
+ + + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/BasicConnectionManager.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/BasicConnectionManager.html new file mode 100644 index 0000000..d0d3e77 --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/BasicConnectionManager.html @@ -0,0 +1,285 @@ + + + + + + +BasicConnectionManager (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + + +
+
org.gcube.accounting.accounting.summary.access.impl
+

Class BasicConnectionManager

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.gcube.accounting.accounting.summary.access.impl.BasicConnectionManager
    • +
    +
  • +
+
+ +
+
+ +
+
+ +
+
+ + + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/BasicContextTreeProvider.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/BasicContextTreeProvider.html new file mode 100644 index 0000000..8fc119f --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/BasicContextTreeProvider.html @@ -0,0 +1,285 @@ + + + + + + +BasicContextTreeProvider (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + + +
+
org.gcube.accounting.accounting.summary.access.impl
+

Class BasicContextTreeProvider

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.gcube.accounting.accounting.summary.access.impl.BasicContextTreeProvider
    • +
    +
  • +
+
+ +
+
+ +
+
+ +
+
+ + + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/ConnectionManager.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/ConnectionManager.html new file mode 100644 index 0000000..160ea12 --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/ConnectionManager.html @@ -0,0 +1,232 @@ + + + + + + +ConnectionManager (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + + +
+
org.gcube.accounting.accounting.summary.access.impl
+

Interface ConnectionManager

+
+
+
+ +
+
+ +
+
+ +
+
+ + + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/ContextTreeProvider.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/ContextTreeProvider.html new file mode 100644 index 0000000..dc1cf71 --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/ContextTreeProvider.html @@ -0,0 +1,232 @@ + + + + + + +ContextTreeProvider (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + + +
+
org.gcube.accounting.accounting.summary.access.impl
+

Interface ContextTreeProvider

+
+
+
+ +
+
+ +
+
+ +
+
+ + + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/DBStructure.CONTEXTS.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/DBStructure.CONTEXTS.html new file mode 100644 index 0000000..a7c0b1a --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/DBStructure.CONTEXTS.html @@ -0,0 +1,317 @@ + + + + + + +DBStructure.CONTEXTS (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + + +
+
org.gcube.accounting.accounting.summary.access.impl
+

Class DBStructure.CONTEXTS

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.gcube.accounting.accounting.summary.access.impl.DBStructure.CONTEXTS
    • +
    +
  • +
+
+
    +
  • +
    +
    Enclosing class:
    +
    DBStructure
    +
    +
    +
    +
    public static class DBStructure.CONTEXTS
    +extends Object
    +
  • +
+
+
+ +
+
+ +
+
+ + + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/DBStructure.DIMENSIONS.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/DBStructure.DIMENSIONS.html new file mode 100644 index 0000000..563e921 --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/DBStructure.DIMENSIONS.html @@ -0,0 +1,351 @@ + + + + + + +DBStructure.DIMENSIONS (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + + +
+
org.gcube.accounting.accounting.summary.access.impl
+

Class DBStructure.DIMENSIONS

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.gcube.accounting.accounting.summary.access.impl.DBStructure.DIMENSIONS
    • +
    +
  • +
+
+
    +
  • +
    +
    Enclosing class:
    +
    DBStructure
    +
    +
    +
    +
    public static class DBStructure.DIMENSIONS
    +extends Object
    +
  • +
+
+
+ +
+
+ +
+
+ + + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/DBStructure.Measure.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/DBStructure.Measure.html new file mode 100644 index 0000000..b7a4c2c --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/DBStructure.Measure.html @@ -0,0 +1,351 @@ + + + + + + +DBStructure.Measure (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + + +
+
org.gcube.accounting.accounting.summary.access.impl
+

Class DBStructure.Measure

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.gcube.accounting.accounting.summary.access.impl.DBStructure.Measure
    • +
    +
  • +
+
+
    +
  • +
    +
    Enclosing class:
    +
    DBStructure
    +
    +
    +
    +
    public static class DBStructure.Measure
    +extends Object
    +
  • +
+
+
+ +
+
+ +
+
+ + + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/DBStructure.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/DBStructure.html new file mode 100644 index 0000000..74f8149 --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/DBStructure.html @@ -0,0 +1,266 @@ + + + + + + +DBStructure (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + + +
+
org.gcube.accounting.accounting.summary.access.impl
+

Class DBStructure

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.gcube.accounting.accounting.summary.access.impl.DBStructure
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    public class DBStructure
    +extends Object
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        DBStructure

        +
        public DBStructure()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/Queries.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/Queries.html new file mode 100644 index 0000000..c0347c8 --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/Queries.html @@ -0,0 +1,476 @@ + + + + + + +Queries (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + + +
+
org.gcube.accounting.accounting.summary.access.impl
+

Class Queries

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.gcube.accounting.accounting.summary.access.impl.Queries
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    public class Queries
    +extends Object
    +
  • +
+
+
+ +
+
+ +
+
+ + + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/class-use/AccountingDaoImpl.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/class-use/AccountingDaoImpl.html new file mode 100644 index 0000000..994cfd9 --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/class-use/AccountingDaoImpl.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.gcube.accounting.accounting.summary.access.impl.AccountingDaoImpl (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.gcube.accounting.accounting.summary.access.impl.AccountingDaoImpl

+
+
No usage of org.gcube.accounting.accounting.summary.access.impl.AccountingDaoImpl
+ + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/class-use/BasicConnectionManager.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/class-use/BasicConnectionManager.html new file mode 100644 index 0000000..0804943 --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/class-use/BasicConnectionManager.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.gcube.accounting.accounting.summary.access.impl.BasicConnectionManager (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.gcube.accounting.accounting.summary.access.impl.BasicConnectionManager

+
+
No usage of org.gcube.accounting.accounting.summary.access.impl.BasicConnectionManager
+ + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/class-use/BasicContextTreeProvider.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/class-use/BasicContextTreeProvider.html new file mode 100644 index 0000000..842314c --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/class-use/BasicContextTreeProvider.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.gcube.accounting.accounting.summary.access.impl.BasicContextTreeProvider (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.gcube.accounting.accounting.summary.access.impl.BasicContextTreeProvider

+
+
No usage of org.gcube.accounting.accounting.summary.access.impl.BasicContextTreeProvider
+ + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/class-use/ConnectionManager.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/class-use/ConnectionManager.html new file mode 100644 index 0000000..85d4c4f --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/class-use/ConnectionManager.html @@ -0,0 +1,178 @@ + + + + + + +Uses of Interface org.gcube.accounting.accounting.summary.access.impl.ConnectionManager (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Interface
org.gcube.accounting.accounting.summary.access.impl.ConnectionManager

+
+
+ +
+ + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/class-use/ContextTreeProvider.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/class-use/ContextTreeProvider.html new file mode 100644 index 0000000..b4b3d15 --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/class-use/ContextTreeProvider.html @@ -0,0 +1,213 @@ + + + + + + +Uses of Interface org.gcube.accounting.accounting.summary.access.impl.ContextTreeProvider (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Interface
org.gcube.accounting.accounting.summary.access.impl.ContextTreeProvider

+
+
+ +
+ + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/class-use/DBStructure.CONTEXTS.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/class-use/DBStructure.CONTEXTS.html new file mode 100644 index 0000000..521812d --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/class-use/DBStructure.CONTEXTS.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.gcube.accounting.accounting.summary.access.impl.DBStructure.CONTEXTS (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.gcube.accounting.accounting.summary.access.impl.DBStructure.CONTEXTS

+
+
No usage of org.gcube.accounting.accounting.summary.access.impl.DBStructure.CONTEXTS
+ + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/class-use/DBStructure.DIMENSIONS.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/class-use/DBStructure.DIMENSIONS.html new file mode 100644 index 0000000..8609899 --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/class-use/DBStructure.DIMENSIONS.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.gcube.accounting.accounting.summary.access.impl.DBStructure.DIMENSIONS (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.gcube.accounting.accounting.summary.access.impl.DBStructure.DIMENSIONS

+
+
No usage of org.gcube.accounting.accounting.summary.access.impl.DBStructure.DIMENSIONS
+ + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/class-use/DBStructure.Measure.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/class-use/DBStructure.Measure.html new file mode 100644 index 0000000..060d5c8 --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/class-use/DBStructure.Measure.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.gcube.accounting.accounting.summary.access.impl.DBStructure.Measure (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.gcube.accounting.accounting.summary.access.impl.DBStructure.Measure

+
+
No usage of org.gcube.accounting.accounting.summary.access.impl.DBStructure.Measure
+ + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/class-use/DBStructure.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/class-use/DBStructure.html new file mode 100644 index 0000000..fcfddd7 --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/class-use/DBStructure.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.gcube.accounting.accounting.summary.access.impl.DBStructure (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.gcube.accounting.accounting.summary.access.impl.DBStructure

+
+
No usage of org.gcube.accounting.accounting.summary.access.impl.DBStructure
+ + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/class-use/Queries.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/class-use/Queries.html new file mode 100644 index 0000000..38f9489 --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/class-use/Queries.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.gcube.accounting.accounting.summary.access.impl.Queries (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.gcube.accounting.accounting.summary.access.impl.Queries

+
+
No usage of org.gcube.accounting.accounting.summary.access.impl.Queries
+ + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/package-frame.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/package-frame.html new file mode 100644 index 0000000..d6e7db4 --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/package-frame.html @@ -0,0 +1,33 @@ + + + + + + +org.gcube.accounting.accounting.summary.access.impl (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + +

org.gcube.accounting.accounting.summary.access.impl

+ + + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/package-summary.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/package-summary.html new file mode 100644 index 0000000..ac6acfa --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/package-summary.html @@ -0,0 +1,191 @@ + + + + + + +org.gcube.accounting.accounting.summary.access.impl (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.gcube.accounting.accounting.summary.access.impl

+
+
+ +
+ + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/package-tree.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/package-tree.html new file mode 100644 index 0000000..c7448e4 --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/package-tree.html @@ -0,0 +1,151 @@ + + + + + + +org.gcube.accounting.accounting.summary.access.impl Class Hierarchy (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.gcube.accounting.accounting.summary.access.impl

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Interface Hierarchy

+ +
+ + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/package-use.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/package-use.html new file mode 100644 index 0000000..0da610b --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/impl/package-use.html @@ -0,0 +1,181 @@ + + + + + + +Uses of Package org.gcube.accounting.accounting.summary.access.impl (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.gcube.accounting.accounting.summary.access.impl

+
+ + + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/model/MeasureResolution.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/MeasureResolution.html new file mode 100644 index 0000000..61a863c --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/MeasureResolution.html @@ -0,0 +1,332 @@ + + + + + + +MeasureResolution (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + + +
+
org.gcube.accounting.accounting.summary.access.model
+

Enum MeasureResolution

+
+
+ +
+ +
+
+ +
+
+
    +
  • + + + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        values

        +
        public static MeasureResolution[] values()
        +
        Returns an array containing the constants of this enum type, in +the order they are declared. This method may be used to iterate +over the constants as follows: +
        +for (MeasureResolution c : MeasureResolution.values())
        +    System.out.println(c);
        +
        +
        +
        Returns:
        +
        an array containing the constants of this enum type, in the order they are declared
        +
        +
      • +
      + + + +
        +
      • +

        valueOf

        +
        public static MeasureResolution valueOf(String name)
        +
        Returns the enum constant of this type with the specified name. +The string must match exactly an identifier used to declare an +enum constant in this type. (Extraneous whitespace characters are +not permitted.)
        +
        +
        Parameters:
        +
        name - the name of the enum constant to be returned.
        +
        Returns:
        +
        the enum constant with the specified name
        +
        Throws:
        +
        IllegalArgumentException - if this enum type has no constant with the specified name
        +
        NullPointerException - if the argument is null
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/model/Record.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/Record.html new file mode 100644 index 0000000..be65eee --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/Record.html @@ -0,0 +1,248 @@ + + + + + + +Record (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + + +
+
org.gcube.accounting.accounting.summary.access.model
+

Class Record

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.gcube.accounting.accounting.summary.access.model.Record
    • +
    +
  • +
+
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        Record

        +
        public Record()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/model/Report.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/Report.html new file mode 100644 index 0000000..e3b8a73 --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/Report.html @@ -0,0 +1,286 @@ + + + + + + +Report (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + + +
+
org.gcube.accounting.accounting.summary.access.model
+

Class Report

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.gcube.accounting.accounting.summary.access.model.Report
    • +
    +
  • +
+
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        Report

        +
        public Report()
        +
      • +
      +
    • +
    + + +
  • +
+
+
+ + + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/model/ReportElement.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/ReportElement.html new file mode 100644 index 0000000..049c75d --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/ReportElement.html @@ -0,0 +1,286 @@ + + + + + + +ReportElement (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + + +
+
org.gcube.accounting.accounting.summary.access.model
+

Class ReportElement

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.gcube.accounting.accounting.summary.access.model.ReportElement
    • +
    +
  • +
+
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ReportElement

        +
        public ReportElement()
        +
      • +
      +
    • +
    + + +
  • +
+
+
+ + + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/model/ScopeDescriptor.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/ScopeDescriptor.html new file mode 100644 index 0000000..b15c395 --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/ScopeDescriptor.html @@ -0,0 +1,316 @@ + + + + + + +ScopeDescriptor (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + + +
+
org.gcube.accounting.accounting.summary.access.model
+

Class ScopeDescriptor

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.gcube.accounting.accounting.summary.access.model.ScopeDescriptor
    • +
    +
  • +
+
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ScopeDescriptor

        +
        public ScopeDescriptor()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        hasChildren

        +
        public boolean hasChildren()
        +
      • +
      + + + +
        +
      • +

        hashCode

        +
        public int hashCode()
        +
        +
        Overrides:
        +
        hashCode in class Object
        +
        +
      • +
      + + + +
        +
      • +

        equals

        +
        public boolean equals(Object obj)
        +
        +
        Overrides:
        +
        equals in class Object
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/model/Series.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/Series.html new file mode 100644 index 0000000..d4514cc --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/Series.html @@ -0,0 +1,286 @@ + + + + + + +Series (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + + +
+
org.gcube.accounting.accounting.summary.access.model
+

Class Series

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.gcube.accounting.accounting.summary.access.model.Series
    • +
    +
  • +
+
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        Series

        +
        public Series()
        +
      • +
      +
    • +
    + + +
  • +
+
+
+ + + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/model/class-use/MeasureResolution.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/class-use/MeasureResolution.html new file mode 100644 index 0000000..3ce0815 --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/class-use/MeasureResolution.html @@ -0,0 +1,246 @@ + + + + + + +Uses of Class org.gcube.accounting.accounting.summary.access.model.MeasureResolution (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.gcube.accounting.accounting.summary.access.model.MeasureResolution

+
+
+ +
+ + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/model/class-use/Record.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/class-use/Record.html new file mode 100644 index 0000000..5fa2034 --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/class-use/Record.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.gcube.accounting.accounting.summary.access.model.Record (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.gcube.accounting.accounting.summary.access.model.Record

+
+
No usage of org.gcube.accounting.accounting.summary.access.model.Record
+ + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/model/class-use/Report.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/class-use/Report.html new file mode 100644 index 0000000..fc7116d --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/class-use/Report.html @@ -0,0 +1,194 @@ + + + + + + +Uses of Class org.gcube.accounting.accounting.summary.access.model.Report (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.gcube.accounting.accounting.summary.access.model.Report

+
+
+ +
+ + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/model/class-use/ReportElement.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/class-use/ReportElement.html new file mode 100644 index 0000000..4555d87 --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/class-use/ReportElement.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.gcube.accounting.accounting.summary.access.model.ReportElement (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.gcube.accounting.accounting.summary.access.model.ReportElement

+
+
No usage of org.gcube.accounting.accounting.summary.access.model.ReportElement
+ + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/model/class-use/ScopeDescriptor.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/class-use/ScopeDescriptor.html new file mode 100644 index 0000000..21bf706 --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/class-use/ScopeDescriptor.html @@ -0,0 +1,279 @@ + + + + + + +Uses of Class org.gcube.accounting.accounting.summary.access.model.ScopeDescriptor (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.gcube.accounting.accounting.summary.access.model.ScopeDescriptor

+
+
+ +
+ + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/model/class-use/Series.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/class-use/Series.html new file mode 100644 index 0000000..5aa5c91 --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/class-use/Series.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.gcube.accounting.accounting.summary.access.model.Series (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.gcube.accounting.accounting.summary.access.model.Series

+
+
No usage of org.gcube.accounting.accounting.summary.access.model.Series
+ + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/model/internal/Dimension.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/internal/Dimension.html new file mode 100644 index 0000000..7c5a85a --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/internal/Dimension.html @@ -0,0 +1,294 @@ + + + + + + +Dimension (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + + +
+
org.gcube.accounting.accounting.summary.access.model.internal
+

Class Dimension

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.gcube.accounting.accounting.summary.access.model.internal.Dimension
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    public class Dimension
    +extends Object
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        Dimension

        +
        public Dimension()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        hashCode

        +
        public int hashCode()
        +
        +
        Overrides:
        +
        hashCode in class Object
        +
        +
      • +
      + + + +
        +
      • +

        equals

        +
        public boolean equals(Object obj)
        +
        +
        Overrides:
        +
        equals in class Object
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/model/internal/class-use/Dimension.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/internal/class-use/Dimension.html new file mode 100644 index 0000000..b6e2ce8 --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/internal/class-use/Dimension.html @@ -0,0 +1,188 @@ + + + + + + +Uses of Class org.gcube.accounting.accounting.summary.access.model.internal.Dimension (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.gcube.accounting.accounting.summary.access.model.internal.Dimension

+
+
+ +
+ + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/model/internal/package-frame.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/internal/package-frame.html new file mode 100644 index 0000000..c95f5f7 --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/internal/package-frame.html @@ -0,0 +1,21 @@ + + + + + + +org.gcube.accounting.accounting.summary.access.model.internal (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + +

org.gcube.accounting.accounting.summary.access.model.internal

+
+

Classes

+ +
+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/model/internal/package-summary.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/internal/package-summary.html new file mode 100644 index 0000000..0a93abd --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/internal/package-summary.html @@ -0,0 +1,144 @@ + + + + + + +org.gcube.accounting.accounting.summary.access.model.internal (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.gcube.accounting.accounting.summary.access.model.internal

+
+
+
    +
  • + + + + + + + + + + + + +
    Class Summary 
    ClassDescription
    Dimension 
    +
  • +
+
+ + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/model/internal/package-tree.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/internal/package-tree.html new file mode 100644 index 0000000..753b79a --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/internal/package-tree.html @@ -0,0 +1,139 @@ + + + + + + +org.gcube.accounting.accounting.summary.access.model.internal Class Hierarchy (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.gcube.accounting.accounting.summary.access.model.internal

+Package Hierarchies: + +
+
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • org.gcube.accounting.accounting.summary.access.model.internal.Dimension
    • +
    +
  • +
+
+ + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/model/internal/package-use.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/internal/package-use.html new file mode 100644 index 0000000..d1cb571 --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/internal/package-use.html @@ -0,0 +1,178 @@ + + + + + + +Uses of Package org.gcube.accounting.accounting.summary.access.model.internal (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.gcube.accounting.accounting.summary.access.model.internal

+
+ + + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/model/package-frame.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/package-frame.html new file mode 100644 index 0000000..8591d7f --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/package-frame.html @@ -0,0 +1,29 @@ + + + + + + +org.gcube.accounting.accounting.summary.access.model (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + +

org.gcube.accounting.accounting.summary.access.model

+ + + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/model/package-summary.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/package-summary.html new file mode 100644 index 0000000..18cc59c --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/package-summary.html @@ -0,0 +1,175 @@ + + + + + + +org.gcube.accounting.accounting.summary.access.model (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.gcube.accounting.accounting.summary.access.model

+
+
+ +
+ + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/model/package-tree.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/package-tree.html new file mode 100644 index 0000000..3e3e646 --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/package-tree.html @@ -0,0 +1,155 @@ + + + + + + +org.gcube.accounting.accounting.summary.access.model Class Hierarchy (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.gcube.accounting.accounting.summary.access.model

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Enum Hierarchy

+ +
+ + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/model/package-use.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/package-use.html new file mode 100644 index 0000000..b6f6f7b --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/package-use.html @@ -0,0 +1,209 @@ + + + + + + +Uses of Package org.gcube.accounting.accounting.summary.access.model (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.gcube.accounting.accounting.summary.access.model

+
+ + + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/model/update/AccountingRecord.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/update/AccountingRecord.html new file mode 100644 index 0000000..e4d05d5 --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/update/AccountingRecord.html @@ -0,0 +1,239 @@ + + + + + + +AccountingRecord (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + + +
+
org.gcube.accounting.accounting.summary.access.model.update
+

Class AccountingRecord

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.gcube.accounting.accounting.summary.access.model.update.AccountingRecord
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    public class AccountingRecord
    +extends Object
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        AccountingRecord

        +
        public AccountingRecord()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/model/update/UpdateReport.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/update/UpdateReport.html new file mode 100644 index 0000000..3578a7d --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/update/UpdateReport.html @@ -0,0 +1,239 @@ + + + + + + +UpdateReport (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + + +
+
org.gcube.accounting.accounting.summary.access.model.update
+

Class UpdateReport

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.gcube.accounting.accounting.summary.access.model.update.UpdateReport
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    public class UpdateReport
    +extends Object
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        UpdateReport

        +
        public UpdateReport()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/model/update/class-use/AccountingRecord.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/update/class-use/AccountingRecord.html new file mode 100644 index 0000000..6157d69 --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/update/class-use/AccountingRecord.html @@ -0,0 +1,188 @@ + + + + + + +Uses of Class org.gcube.accounting.accounting.summary.access.model.update.AccountingRecord (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.gcube.accounting.accounting.summary.access.model.update.AccountingRecord

+
+
+ +
+ + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/model/update/class-use/UpdateReport.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/update/class-use/UpdateReport.html new file mode 100644 index 0000000..8783355 --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/update/class-use/UpdateReport.html @@ -0,0 +1,188 @@ + + + + + + +Uses of Class org.gcube.accounting.accounting.summary.access.model.update.UpdateReport (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.gcube.accounting.accounting.summary.access.model.update.UpdateReport

+
+
+ +
+ + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/model/update/package-frame.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/update/package-frame.html new file mode 100644 index 0000000..5ae89c2 --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/update/package-frame.html @@ -0,0 +1,22 @@ + + + + + + +org.gcube.accounting.accounting.summary.access.model.update (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + +

org.gcube.accounting.accounting.summary.access.model.update

+
+

Classes

+ +
+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/model/update/package-summary.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/update/package-summary.html new file mode 100644 index 0000000..12b882c --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/update/package-summary.html @@ -0,0 +1,148 @@ + + + + + + +org.gcube.accounting.accounting.summary.access.model.update (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.gcube.accounting.accounting.summary.access.model.update

+
+
+ +
+ + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/model/update/package-tree.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/update/package-tree.html new file mode 100644 index 0000000..db51709 --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/update/package-tree.html @@ -0,0 +1,140 @@ + + + + + + +org.gcube.accounting.accounting.summary.access.model.update Class Hierarchy (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.gcube.accounting.accounting.summary.access.model.update

+Package Hierarchies: + +
+
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • org.gcube.accounting.accounting.summary.access.model.update.AccountingRecord
    • +
    • org.gcube.accounting.accounting.summary.access.model.update.UpdateReport
    • +
    +
  • +
+
+ + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/model/update/package-use.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/update/package-use.html new file mode 100644 index 0000000..808f97b --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/model/update/package-use.html @@ -0,0 +1,184 @@ + + + + + + +Uses of Package org.gcube.accounting.accounting.summary.access.model.update (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.gcube.accounting.accounting.summary.access.model.update

+
+ + + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/package-frame.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/package-frame.html new file mode 100644 index 0000000..3287832 --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/package-frame.html @@ -0,0 +1,25 @@ + + + + + + +org.gcube.accounting.accounting.summary.access (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + +

org.gcube.accounting.accounting.summary.access

+
+

Interfaces

+ +

Exceptions

+ +
+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/package-summary.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/package-summary.html new file mode 100644 index 0000000..a437f65 --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/package-summary.html @@ -0,0 +1,159 @@ + + + + + + +org.gcube.accounting.accounting.summary.access (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.gcube.accounting.accounting.summary.access

+
+
+
    +
  • + + + + + + + + + + + + +
    Interface Summary 
    InterfaceDescription
    AccountingDao 
    +
  • +
  • + + + + + + + + + + + + +
    Exception Summary 
    ExceptionDescription
    ParameterException 
    +
  • +
+
+ + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/package-tree.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/package-tree.html new file mode 100644 index 0000000..cc0dd42 --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/package-tree.html @@ -0,0 +1,151 @@ + + + + + + +org.gcube.accounting.accounting.summary.access Class Hierarchy (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.gcube.accounting.accounting.summary.access

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Interface Hierarchy

+ +
+ + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/org/gcube/accounting/accounting/summary/access/package-use.html b/target/apidocs/org/gcube/accounting/accounting/summary/access/package-use.html new file mode 100644 index 0000000..0651137 --- /dev/null +++ b/target/apidocs/org/gcube/accounting/accounting/summary/access/package-use.html @@ -0,0 +1,184 @@ + + + + + + +Uses of Package org.gcube.accounting.accounting.summary.access (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.gcube.accounting.accounting.summary.access

+
+ + + + + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/overview-frame.html b/target/apidocs/overview-frame.html new file mode 100644 index 0000000..cb34311 --- /dev/null +++ b/target/apidocs/overview-frame.html @@ -0,0 +1,26 @@ + + + + + + +Overview List (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + +

 

+ + diff --git a/target/apidocs/overview-summary.html b/target/apidocs/overview-summary.html new file mode 100644 index 0000000..3e95dec --- /dev/null +++ b/target/apidocs/overview-summary.html @@ -0,0 +1,156 @@ + + + + + + +Overview (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Accounting Summary Access 1.0.0-SNAPSHOT API

+
+ + +
+ + + + + + + +
+ + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/overview-tree.html b/target/apidocs/overview-tree.html new file mode 100644 index 0000000..f43e79c --- /dev/null +++ b/target/apidocs/overview-tree.html @@ -0,0 +1,185 @@ + + + + + + +Class Hierarchy (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + + +
+

Class Hierarchy

+ +

Interface Hierarchy

+ +

Enum Hierarchy

+ +
+ +
+ + + + + + + +
+ + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/package-list b/target/apidocs/package-list new file mode 100644 index 0000000..4600484 --- /dev/null +++ b/target/apidocs/package-list @@ -0,0 +1,5 @@ +org.gcube.accounting.accounting.summary.access +org.gcube.accounting.accounting.summary.access.impl +org.gcube.accounting.accounting.summary.access.model +org.gcube.accounting.accounting.summary.access.model.internal +org.gcube.accounting.accounting.summary.access.model.update diff --git a/target/apidocs/script.js b/target/apidocs/script.js new file mode 100644 index 0000000..b346356 --- /dev/null +++ b/target/apidocs/script.js @@ -0,0 +1,30 @@ +function show(type) +{ + count = 0; + for (var key in methods) { + var row = document.getElementById(key); + if ((methods[key] & type) != 0) { + row.style.display = ''; + row.className = (count++ % 2) ? rowColor : altColor; + } + else + row.style.display = 'none'; + } + updateTabs(type); +} + +function updateTabs(type) +{ + for (var value in tabs) { + var sNode = document.getElementById(tabs[value][0]); + var spanNode = sNode.firstChild; + if (value == type) { + sNode.className = activeTableTab; + spanNode.innerHTML = tabs[value][1]; + } + else { + sNode.className = tableTab; + spanNode.innerHTML = "" + tabs[value][1] + ""; + } + } +} diff --git a/target/apidocs/serialized-form.html b/target/apidocs/serialized-form.html new file mode 100644 index 0000000..2cffe49 --- /dev/null +++ b/target/apidocs/serialized-form.html @@ -0,0 +1,286 @@ + + + + + + +Serialized Form (Accounting Summary Access 1.0.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Serialized Form

+
+
+ +
+ +
+ + + + + + + +
+ + +

Copyright © 2018. All Rights Reserved.

+ + diff --git a/target/apidocs/stylesheet.css b/target/apidocs/stylesheet.css new file mode 100644 index 0000000..98055b2 --- /dev/null +++ b/target/apidocs/stylesheet.css @@ -0,0 +1,574 @@ +/* Javadoc style sheet */ +/* +Overall document style +*/ + +@import url('resources/fonts/dejavu.css'); + +body { + background-color:#ffffff; + color:#353833; + font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; + font-size:14px; + margin:0; +} +a:link, a:visited { + text-decoration:none; + color:#4A6782; +} +a:hover, a:focus { + text-decoration:none; + color:#bb7a2a; +} +a:active { + text-decoration:none; + color:#4A6782; +} +a[name] { + color:#353833; +} +a[name]:hover { + text-decoration:none; + color:#353833; +} +pre { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; +} +h1 { + font-size:20px; +} +h2 { + font-size:18px; +} +h3 { + font-size:16px; + font-style:italic; +} +h4 { + font-size:13px; +} +h5 { + font-size:12px; +} +h6 { + font-size:11px; +} +ul { + list-style-type:disc; +} +code, tt { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; + margin-top:8px; + line-height:1.4em; +} +dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; +} +table tr td dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + vertical-align:top; + padding-top:4px; +} +sup { + font-size:8px; +} +/* +Document title and Copyright styles +*/ +.clear { + clear:both; + height:0px; + overflow:hidden; +} +.aboutLanguage { + float:right; + padding:0px 21px; + font-size:11px; + z-index:200; + margin-top:-9px; +} +.legalCopy { + margin-left:.5em; +} +.bar a, .bar a:link, .bar a:visited, .bar a:active { + color:#FFFFFF; + text-decoration:none; +} +.bar a:hover, .bar a:focus { + color:#bb7a2a; +} +.tab { + background-color:#0066FF; + color:#ffffff; + padding:8px; + width:5em; + font-weight:bold; +} +/* +Navigation bar styles +*/ +.bar { + background-color:#4D7A97; + color:#FFFFFF; + padding:.8em .5em .4em .8em; + height:auto;/*height:1.8em;*/ + font-size:11px; + margin:0; +} +.topNav { + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.bottomNav { + margin-top:10px; + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.subNav { + background-color:#dee3e9; + float:left; + width:100%; + overflow:hidden; + font-size:12px; +} +.subNav div { + clear:left; + float:left; + padding:0 0 5px 6px; + text-transform:uppercase; +} +ul.navList, ul.subNavList { + float:left; + margin:0 25px 0 0; + padding:0; +} +ul.navList li{ + list-style:none; + float:left; + padding: 5px 6px; + text-transform:uppercase; +} +ul.subNavList li{ + list-style:none; + float:left; +} +.topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { + color:#FFFFFF; + text-decoration:none; + text-transform:uppercase; +} +.topNav a:hover, .bottomNav a:hover { + text-decoration:none; + color:#bb7a2a; + text-transform:uppercase; +} +.navBarCell1Rev { + background-color:#F8981D; + color:#253441; + margin: auto 5px; +} +.skipNav { + position:absolute; + top:auto; + left:-9999px; + overflow:hidden; +} +/* +Page header and footer styles +*/ +.header, .footer { + clear:both; + margin:0 20px; + padding:5px 0 0 0; +} +.indexHeader { + margin:10px; + position:relative; +} +.indexHeader span{ + margin-right:15px; +} +.indexHeader h1 { + font-size:13px; +} +.title { + color:#2c4557; + margin:10px 0; +} +.subTitle { + margin:5px 0 0 0; +} +.header ul { + margin:0 0 15px 0; + padding:0; +} +.footer ul { + margin:20px 0 5px 0; +} +.header ul li, .footer ul li { + list-style:none; + font-size:13px; +} +/* +Heading styles +*/ +div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +ul.blockList ul.blockList ul.blockList li.blockList h3 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +ul.blockList ul.blockList li.blockList h3 { + padding:0; + margin:15px 0; +} +ul.blockList li.blockList h2 { + padding:0px 0 20px 0; +} +/* +Page layout container styles +*/ +.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer { + clear:both; + padding:10px 20px; + position:relative; +} +.indexContainer { + margin:10px; + position:relative; + font-size:12px; +} +.indexContainer h2 { + font-size:13px; + padding:0 0 3px 0; +} +.indexContainer ul { + margin:0; + padding:0; +} +.indexContainer ul li { + list-style:none; + padding-top:2px; +} +.contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { + font-size:12px; + font-weight:bold; + margin:10px 0 0 0; + color:#4E4E4E; +} +.contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { + margin:5px 0 10px 0px; + font-size:14px; + font-family:'DejaVu Sans Mono',monospace; +} +.serializedFormContainer dl.nameValue dt { + margin-left:1px; + font-size:1.1em; + display:inline; + font-weight:bold; +} +.serializedFormContainer dl.nameValue dd { + margin:0 0 0 1px; + font-size:1.1em; + display:inline; +} +/* +List styles +*/ +ul.horizontal li { + display:inline; + font-size:0.9em; +} +ul.inheritance { + margin:0; + padding:0; +} +ul.inheritance li { + display:inline; + list-style:none; +} +ul.inheritance li ul.inheritance { + margin-left:15px; + padding-left:15px; + padding-top:1px; +} +ul.blockList, ul.blockListLast { + margin:10px 0 10px 0; + padding:0; +} +ul.blockList li.blockList, ul.blockListLast li.blockList { + list-style:none; + margin-bottom:15px; + line-height:1.4; +} +ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { + padding:0px 20px 5px 10px; + border:1px solid #ededed; + background-color:#f8f8f8; +} +ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { + padding:0 0 5px 8px; + background-color:#ffffff; + border:none; +} +ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { + margin-left:0; + padding-left:0; + padding-bottom:15px; + border:none; +} +ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { + list-style:none; + border-bottom:none; + padding-bottom:0; +} +table tr td dl, table tr td dl dt, table tr td dl dd { + margin-top:0; + margin-bottom:1px; +} +/* +Table styles +*/ +.overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary { + width:100%; + border-left:1px solid #EEE; + border-right:1px solid #EEE; + border-bottom:1px solid #EEE; +} +.overviewSummary, .memberSummary { + padding:0px; +} +.overviewSummary caption, .memberSummary caption, .typeSummary caption, +.useSummary caption, .constantsSummary caption, .deprecatedSummary caption { + position:relative; + text-align:left; + background-repeat:no-repeat; + color:#253441; + font-weight:bold; + clear:none; + overflow:hidden; + padding:0px; + padding-top:10px; + padding-left:1px; + margin:0px; + white-space:pre; +} +.overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link, +.useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary caption a:link, +.overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover, +.useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover, +.overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active, +.useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active, +.overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited, +.useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited { + color:#FFFFFF; +} +.overviewSummary caption span, .memberSummary caption span, .typeSummary caption span, +.useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + padding-bottom:7px; + display:inline-block; + float:left; + background-color:#F8981D; + border: none; + height:16px; +} +.memberSummary caption span.activeTableTab span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + margin-right:3px; + display:inline-block; + float:left; + background-color:#F8981D; + height:16px; +} +.memberSummary caption span.tableTab span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + margin-right:3px; + display:inline-block; + float:left; + background-color:#4D7A97; + height:16px; +} +.memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab { + padding-top:0px; + padding-left:0px; + padding-right:0px; + background-image:none; + float:none; + display:inline; +} +.overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd, +.useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd { + display:none; + width:5px; + position:relative; + float:left; + background-color:#F8981D; +} +.memberSummary .activeTableTab .tabEnd { + display:none; + width:5px; + margin-right:3px; + position:relative; + float:left; + background-color:#F8981D; +} +.memberSummary .tableTab .tabEnd { + display:none; + width:5px; + margin-right:3px; + position:relative; + background-color:#4D7A97; + float:left; + +} +.overviewSummary td, .memberSummary td, .typeSummary td, +.useSummary td, .constantsSummary td, .deprecatedSummary td { + text-align:left; + padding:0px 0px 12px 10px; +} +th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th, +td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{ + vertical-align:top; + padding-right:0px; + padding-top:8px; + padding-bottom:3px; +} +th.colFirst, th.colLast, th.colOne, .constantsSummary th { + background:#dee3e9; + text-align:left; + padding:8px 3px 3px 7px; +} +td.colFirst, th.colFirst { + white-space:nowrap; + font-size:13px; +} +td.colLast, th.colLast { + font-size:13px; +} +td.colOne, th.colOne { + font-size:13px; +} +.overviewSummary td.colFirst, .overviewSummary th.colFirst, +.useSummary td.colFirst, .useSummary th.colFirst, +.overviewSummary td.colOne, .overviewSummary th.colOne, +.memberSummary td.colFirst, .memberSummary th.colFirst, +.memberSummary td.colOne, .memberSummary th.colOne, +.typeSummary td.colFirst{ + width:25%; + vertical-align:top; +} +td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover { + font-weight:bold; +} +.tableSubHeadingColor { + background-color:#EEEEFF; +} +.altColor { + background-color:#FFFFFF; +} +.rowColor { + background-color:#EEEEEF; +} +/* +Content styles +*/ +.description pre { + margin-top:0; +} +.deprecatedContent { + margin:0; + padding:10px 0; +} +.docSummary { + padding:0; +} + +ul.blockList ul.blockList ul.blockList li.blockList h3 { + font-style:normal; +} + +div.block { + font-size:14px; + font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; +} + +td.colLast div { + padding-top:0px; +} + + +td.colLast a { + padding-bottom:3px; +} +/* +Formatting effect styles +*/ +.sourceLineNo { + color:green; + padding:0 30px 0 0; +} +h1.hidden { + visibility:hidden; + overflow:hidden; + font-size:10px; +} +.block { + display:block; + margin:3px 10px 2px 0px; + color:#474747; +} +.deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink, +.overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel, +.seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink { + font-weight:bold; +} +.deprecationComment, .emphasizedPhrase, .interfaceName { + font-style:italic; +} + +div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase, +div.block div.block span.interfaceName { + font-style:normal; +} + +div.contentContainer ul.blockList li.blockList h2{ + padding-bottom:0px; +} diff --git a/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml b/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml new file mode 100644 index 0000000..8b89c97 --- /dev/null +++ b/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml @@ -0,0 +1,10 @@ + + + + + + + + + src/main/javadoc + diff --git a/target/javadoc-bundle-options/package-list b/target/javadoc-bundle-options/package-list new file mode 100644 index 0000000..42c9b95 --- /dev/null +++ b/target/javadoc-bundle-options/package-list @@ -0,0 +1,203 @@ +java.applet +java.awt +java.awt.color +java.awt.datatransfer +java.awt.dnd +java.awt.event +java.awt.font +java.awt.geom +java.awt.im +java.awt.im.spi +java.awt.image +java.awt.image.renderable +java.awt.print +java.beans +java.beans.beancontext +java.io +java.lang +java.lang.annotation +java.lang.instrument +java.lang.management +java.lang.ref +java.lang.reflect +java.math +java.net +java.nio +java.nio.channels +java.nio.channels.spi +java.nio.charset +java.nio.charset.spi +java.rmi +java.rmi.activation +java.rmi.dgc +java.rmi.registry +java.rmi.server +java.security +java.security.acl +java.security.cert +java.security.interfaces +java.security.spec +java.sql +java.text +java.text.spi +java.util +java.util.concurrent +java.util.concurrent.atomic +java.util.concurrent.locks +java.util.jar +java.util.logging +java.util.prefs +java.util.regex +java.util.spi +java.util.zip +javax.accessibility +javax.activation +javax.activity +javax.annotation +javax.annotation.processing +javax.crypto +javax.crypto.interfaces +javax.crypto.spec +javax.imageio +javax.imageio.event +javax.imageio.metadata +javax.imageio.plugins.bmp +javax.imageio.plugins.jpeg +javax.imageio.spi +javax.imageio.stream +javax.jws +javax.jws.soap +javax.lang.model +javax.lang.model.element +javax.lang.model.type +javax.lang.model.util +javax.management +javax.management.loading +javax.management.modelmbean +javax.management.monitor +javax.management.openmbean +javax.management.relation +javax.management.remote +javax.management.remote.rmi +javax.management.timer +javax.naming +javax.naming.directory +javax.naming.event +javax.naming.ldap +javax.naming.spi +javax.net +javax.net.ssl +javax.print +javax.print.attribute +javax.print.attribute.standard +javax.print.event +javax.rmi +javax.rmi.CORBA +javax.rmi.ssl +javax.script +javax.security.auth +javax.security.auth.callback +javax.security.auth.kerberos +javax.security.auth.login +javax.security.auth.spi +javax.security.auth.x500 +javax.security.cert +javax.security.sasl +javax.sound.midi +javax.sound.midi.spi +javax.sound.sampled +javax.sound.sampled.spi +javax.sql +javax.sql.rowset +javax.sql.rowset.serial +javax.sql.rowset.spi +javax.swing +javax.swing.border +javax.swing.colorchooser +javax.swing.event +javax.swing.filechooser +javax.swing.plaf +javax.swing.plaf.basic +javax.swing.plaf.metal +javax.swing.plaf.multi +javax.swing.plaf.synth +javax.swing.table +javax.swing.text +javax.swing.text.html +javax.swing.text.html.parser +javax.swing.text.rtf +javax.swing.tree +javax.swing.undo +javax.tools +javax.transaction +javax.transaction.xa +javax.xml +javax.xml.bind +javax.xml.bind.annotation +javax.xml.bind.annotation.adapters +javax.xml.bind.attachment +javax.xml.bind.helpers +javax.xml.bind.util +javax.xml.crypto +javax.xml.crypto.dom +javax.xml.crypto.dsig +javax.xml.crypto.dsig.dom +javax.xml.crypto.dsig.keyinfo +javax.xml.crypto.dsig.spec +javax.xml.datatype +javax.xml.namespace +javax.xml.parsers +javax.xml.soap +javax.xml.stream +javax.xml.stream.events +javax.xml.stream.util +javax.xml.transform +javax.xml.transform.dom +javax.xml.transform.sax +javax.xml.transform.stax +javax.xml.transform.stream +javax.xml.validation +javax.xml.ws +javax.xml.ws.handler +javax.xml.ws.handler.soap +javax.xml.ws.http +javax.xml.ws.soap +javax.xml.ws.spi +javax.xml.ws.wsaddressing +javax.xml.xpath +org.ietf.jgss +org.omg.CORBA +org.omg.CORBA.DynAnyPackage +org.omg.CORBA.ORBPackage +org.omg.CORBA.TypeCodePackage +org.omg.CORBA.portable +org.omg.CORBA_2_3 +org.omg.CORBA_2_3.portable +org.omg.CosNaming +org.omg.CosNaming.NamingContextExtPackage +org.omg.CosNaming.NamingContextPackage +org.omg.Dynamic +org.omg.DynamicAny +org.omg.DynamicAny.DynAnyFactoryPackage +org.omg.DynamicAny.DynAnyPackage +org.omg.IOP +org.omg.IOP.CodecFactoryPackage +org.omg.IOP.CodecPackage +org.omg.Messaging +org.omg.PortableInterceptor +org.omg.PortableInterceptor.ORBInitInfoPackage +org.omg.PortableServer +org.omg.PortableServer.CurrentPackage +org.omg.PortableServer.POAManagerPackage +org.omg.PortableServer.POAPackage +org.omg.PortableServer.ServantLocatorPackage +org.omg.PortableServer.portable +org.omg.SendingContext +org.omg.stub.java.rmi +org.w3c.dom +org.w3c.dom.bootstrap +org.w3c.dom.events +org.w3c.dom.ls +org.xml.sax +org.xml.sax.ext +org.xml.sax.helpers \ No newline at end of file diff --git a/target/maven-archiver/pom.properties b/target/maven-archiver/pom.properties new file mode 100644 index 0000000..f138f62 --- /dev/null +++ b/target/maven-archiver/pom.properties @@ -0,0 +1,5 @@ +#Generated by Maven +#Wed Jul 11 16:22:19 CEST 2018 +version=1.0.0-SNAPSHOT +groupId=org.gcube.accounting +artifactId=accounting-summary-access diff --git a/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst b/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst new file mode 100644 index 0000000..0d13c9f --- /dev/null +++ b/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst @@ -0,0 +1,24 @@ +org/gcube/accounting/accounting/summary/access/impl/DBStructure.class +org/gcube/accounting/accounting/summary/access/model/Report.class +org/gcube/accounting/accounting/summary/access/impl/DBStructure$CONTEXTS.class +org/gcube/accounting/accounting/summary/access/model/Record.class +org/gcube/accounting/accounting/summary/access/impl/AccountingDaoImpl.class +org/gcube/accounting/accounting/summary/access/impl/BasicConnectionManager$1.class +org/gcube/accounting/accounting/summary/access/model/ScopeDescriptor.class +org/gcube/accounting/accounting/summary/access/impl/DBStructure$Measure.class +org/gcube/accounting/accounting/summary/access/impl/BasicConnectionManager.class +org/gcube/accounting/accounting/summary/access/model/ReportElement.class +org/gcube/accounting/accounting/summary/access/impl/AccountingDaoImpl$1.class +org/gcube/accounting/accounting/summary/access/impl/DBStructure$DIMENSIONS.class +org/gcube/accounting/accounting/summary/access/model/update/AccountingRecord.class +org/gcube/accounting/accounting/summary/access/impl/Queries.class +org/gcube/accounting/accounting/summary/access/model/MeasureResolution.class +org/gcube/accounting/accounting/summary/access/impl/BasicConnectionManager$DataBaseDescriptor.class +org/gcube/accounting/accounting/summary/access/model/Series.class +org/gcube/accounting/accounting/summary/access/impl/ConnectionManager.class +org/gcube/accounting/accounting/summary/access/impl/ContextTreeProvider.class +org/gcube/accounting/accounting/summary/access/AccountingDao.class +org/gcube/accounting/accounting/summary/access/impl/BasicContextTreeProvider.class +org/gcube/accounting/accounting/summary/access/model/internal/Dimension.class +org/gcube/accounting/accounting/summary/access/ParameterException.class +org/gcube/accounting/accounting/summary/access/model/update/UpdateReport.class diff --git a/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst new file mode 100644 index 0000000..906f2fe --- /dev/null +++ b/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst @@ -0,0 +1,18 @@ +/home/fabio/workspaces/DEV/accounting-summary-access/src/main/java/org/gcube/accounting/accounting/summary/access/model/Record.java +/home/fabio/workspaces/DEV/accounting-summary-access/src/main/java/org/gcube/accounting/accounting/summary/access/ParameterException.java +/home/fabio/workspaces/DEV/accounting-summary-access/src/main/java/org/gcube/accounting/accounting/summary/access/model/update/AccountingRecord.java +/home/fabio/workspaces/DEV/accounting-summary-access/src/main/java/org/gcube/accounting/accounting/summary/access/impl/AccountingDaoImpl.java +/home/fabio/workspaces/DEV/accounting-summary-access/src/main/java/org/gcube/accounting/accounting/summary/access/model/update/UpdateReport.java +/home/fabio/workspaces/DEV/accounting-summary-access/src/main/java/org/gcube/accounting/accounting/summary/access/model/internal/Dimension.java +/home/fabio/workspaces/DEV/accounting-summary-access/src/main/java/org/gcube/accounting/accounting/summary/access/model/ReportElement.java +/home/fabio/workspaces/DEV/accounting-summary-access/src/main/java/org/gcube/accounting/accounting/summary/access/impl/ConnectionManager.java +/home/fabio/workspaces/DEV/accounting-summary-access/src/main/java/org/gcube/accounting/accounting/summary/access/AccountingDao.java +/home/fabio/workspaces/DEV/accounting-summary-access/src/main/java/org/gcube/accounting/accounting/summary/access/impl/BasicContextTreeProvider.java +/home/fabio/workspaces/DEV/accounting-summary-access/src/main/java/org/gcube/accounting/accounting/summary/access/impl/ContextTreeProvider.java +/home/fabio/workspaces/DEV/accounting-summary-access/src/main/java/org/gcube/accounting/accounting/summary/access/impl/BasicConnectionManager.java +/home/fabio/workspaces/DEV/accounting-summary-access/src/main/java/org/gcube/accounting/accounting/summary/access/model/ScopeDescriptor.java +/home/fabio/workspaces/DEV/accounting-summary-access/src/main/java/org/gcube/accounting/accounting/summary/access/model/MeasureResolution.java +/home/fabio/workspaces/DEV/accounting-summary-access/src/main/java/org/gcube/accounting/accounting/summary/access/impl/DBStructure.java +/home/fabio/workspaces/DEV/accounting-summary-access/src/main/java/org/gcube/accounting/accounting/summary/access/impl/Queries.java +/home/fabio/workspaces/DEV/accounting-summary-access/src/main/java/org/gcube/accounting/accounting/summary/access/model/Series.java +/home/fabio/workspaces/DEV/accounting-summary-access/src/main/java/org/gcube/accounting/accounting/summary/access/model/Report.java diff --git a/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst b/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst new file mode 100644 index 0000000..6b49529 --- /dev/null +++ b/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst @@ -0,0 +1,5 @@ +org/gcube/data/access/accounting/summary/access/test/TokenSetter.class +org/gcube/data/access/accounting/summary/access/test/WriteTest.class +org/gcube/data/access/accounting/summary/access/test/DummyContextTreeProvider.class +org/gcube/data/access/accounting/summary/access/test/SimpleTest.class +org/gcube/data/access/accounting/summary/access/utils/Importer.class diff --git a/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst b/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst new file mode 100644 index 0000000..bb882b6 --- /dev/null +++ b/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst @@ -0,0 +1,5 @@ +/home/fabio/workspaces/DEV/accounting-summary-access/src/test/java/org/gcube/data/access/accounting/summary/access/test/WriteTest.java +/home/fabio/workspaces/DEV/accounting-summary-access/src/test/java/org/gcube/data/access/accounting/summary/access/test/DummyContextTreeProvider.java +/home/fabio/workspaces/DEV/accounting-summary-access/src/test/java/org/gcube/data/access/accounting/summary/access/utils/Importer.java +/home/fabio/workspaces/DEV/accounting-summary-access/src/test/java/org/gcube/data/access/accounting/summary/access/test/TokenSetter.java +/home/fabio/workspaces/DEV/accounting-summary-access/src/test/java/org/gcube/data/access/accounting/summary/access/test/SimpleTest.java