Skip to content

Commit

Permalink
Adding java doc
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] committed Feb 24, 2016
1 parent fa4437e commit 6975d6c
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,12 @@ abstract class AbstractCommitter implements Runnable {
/**
* Creates a new Committer object.
*
* @param service The collection service to use. Cannot be null.
* @param collectionService The collection service to use. Cannot be null.
* @param monitorService The monitoring service to use. Cannot be null.
* @param jobCounter The job counter. Cannot be null.
*/
AbstractCommitter(CollectionService service, MonitorService monitorService, AtomicInteger jobCounter) {
this.collectionService = service;
AbstractCommitter(CollectionService collectionService, MonitorService monitorService, AtomicInteger jobCounter) {
this.collectionService = collectionService;
this.jobCounter = jobCounter;
this.monitorService=monitorService;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ public class AnnotationCommitter extends AbstractCommitter {
/**
* Creates a new AnnotationCommitter object.
*
* @param service The collection service to use. Cannot be null.
* @param collectionService The collection service to use. Cannot be null.
* @param monitorService The monitoring service to use. Cannot be null.
* @param jobCounter The global job counter used to track the number of annotations.
*/
AnnotationCommitter(CollectionService collectionService, MonitorService monitorService, AtomicInteger jobCounter) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ public class MetricCommitter extends AbstractCommitter {
/**
* Creates a new MetricCommitter object.
*
* @param service The collection service to use. Cannot be null.
* @param collectionService The collection service to use. Cannot be null.
* @param monitorService The monitoring service to use. Cannot be null.
* @param jobCounter The global job counter used to track the number of annotations.
*/
MetricCommitter(CollectionService colletionService, MonitorService monitorService, AtomicInteger jobCounter) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ class SchemaCommitter extends AbstractCommitter {
/**
* Creates a new Committer object.
*
* @param service The collection service to use. Cannot be null.
* @param collectionService The collection service to use. Cannot be null.
* @param monitorService The monitoring service to use. Cannot be null.
* @param jobCounter The job counter. Cannot be null.
*/
SchemaCommitter(CollectionService collectionService, MonitorService monitorService, AtomicInteger jobCounter) {
Expand Down
4 changes: 2 additions & 2 deletions argus-build.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Default settings for unit and integration tests.
build.property.persistence.unit=<provider>org.eclipse.persistence.jpa.PersistenceProvider</provider>\n <exclude-unlisted-classes>false</exclude-unlisted-classes>\n <properties>\n <property name="javax.persistence.schema-generation.database.action" value="drop-and-create-tables"/>\n <property name="javax.persistence.jdbc.driver" value="org.apache.derby.jdbc.EmbeddedDriver"/>\n <property name="javax.persistence.jdbc.url" value="jdbc:derby:memory:argus;create=true"/>\n <property name="javax.persistence.jdbc.user" value="root"/>\n <property name="javax.persistence.jdbc.password" value="root"/>\n <property name="eclipselink.ddl-generation" value="drop-and-create-tables"/>\n <property name="eclipselink.logging.level" value="SEVERE"/>\n <property name="eclipselink.logging.parameters" value="true"/>\n <property name="eclipselink.target-database" value="DERBY"/>\n <property name="eclipselink.canonicalmodel.subpackage" value="unit"/>\n </properties>
build.property.secure.cookies=true
build.property.persistence.unit=<provider>org.eclipse.persistence.jpa.PersistenceProvider</provider> <exclude-unlisted-classes>false</exclude-unlisted-classes> <properties> <property name="javax.persistence.schema-generation.database.action" value="create-or-extend-tables"/> <property name="javax.persistence.jdbc.driver" value="org.postgresql.Driver"/> <property name="javax.persistence.jdbc.url" value="jdbc:postgresql://perfeng-tools1-12-sfm.ops.sfdc.net:5432/argus"/> <property name="javax.persistence.jdbc.user" value="postgres"/> <property name="javax.persistence.jdbc.password" value="perfeng"/> <property name="eclipselink.ddl-generation" value="create-or-extend-tables"/> <property name="eclipselink.logging.level" value="FINE"/> <property name="eclipselink.logging.level.sql" value="FINE"/> <property name="eclipselink.logging.parameters" value="true"/> <property name="eclipselink.order-updates" value="true"/> <property name="eclipselink.connection-pool.sequence" value="true" /> <property name="eclipselink.target-database" value="PostgreSQL"/> <property name="eclipselink.canonicalmodel.subpackage" value="prod"/> </properties>
build.property.secure.cookies=false
system.property.admin.email=[email protected]
system.property.log.level=ERROR
system.property.mail.enabled=false
Expand Down

0 comments on commit 6975d6c

Please sign in to comment.