BATCH-2188: Refactored package.html to package-info.java and added package-info.java to all packages that needed one

This commit is contained in:
Michael Minella
2014-04-02 16:22:45 -05:00
parent b26d272d43
commit 74992367a2
119 changed files with 465 additions and 278 deletions

View File

@@ -0,0 +1,6 @@
/**
* Annotations for java based configuration of listeners.
*
* @author Michael Minella
*/
package org.springframework.batch.core.annotation;

View File

@@ -0,0 +1,6 @@
/**
* Annotations and builder factories for java based configuration
*
* @author Michael Minella
*/
package org.springframework.batch.core.configuration.annotation;

View File

@@ -0,0 +1,6 @@
/**
* Interfaces for registration and location of job configurations.
*
* @author Michael Minella
*/
package org.springframework.batch.core.configuration;

View File

@@ -1,7 +0,0 @@
<html>
<body>
<p>
Interfaces for registration and location of job configurations.
</p>
</body>
</html>

View File

@@ -0,0 +1,6 @@
/**
* Specific implementations of configuration concerns.
*
* @author Michael Minella
*/
package org.springframework.batch.core.configuration.support;

View File

@@ -1,7 +0,0 @@
<html>
<body>
<p>
Specific implementations of configuration concerns.
</p>
</body>
</html>

View File

@@ -0,0 +1,6 @@
/**
* Parsers for XML based configuration
*
* @author Michael Minella
*/
package org.springframework.batch.core.configuration.xml;

View File

@@ -0,0 +1,7 @@
/**
* Support classes for implementations of the batch APIs. Things like converters and resource location and management
* concerns.
*
* @author Michael Minella
*/
package org.springframework.batch.core.converter;

View File

@@ -1,6 +0,0 @@
<html>
<body>
<p>Support classes for implementations of the batch APIs. Things
like converters and resource location and management concerns.</p>
</body>
</html>

View File

@@ -0,0 +1,6 @@
/**
* Interfaces and related classes to support meta data browsing.
*
* @author Michael Minella
*/
package org.springframework.batch.core.explore;

View File

@@ -1,7 +0,0 @@
<html>
<body>
<p>
Interfaces and related classes to support meta data browsing.
</p>
</body>
</html>

View File

@@ -0,0 +1,6 @@
/**
* Specific implementations of explorer concerns.
*
* @author Michael Minella
*/
package org.springframework.batch.core.explore.support;

View File

@@ -1,7 +0,0 @@
<html>
<body>
<p>
Specific implementations of explorer concerns.
</p>
</body>
</html>

View File

@@ -0,0 +1,6 @@
/**
* Job and flow level builders for java based configuration of batch jobs
*
* @author Michael Minella
*/
package org.springframework.batch.core.job.builder;

View File

@@ -0,0 +1,6 @@
/**
* Flow related constructs including Flow interface, executors, and related exceptions
*
* @author Michael Minella
*/
package org.springframework.batch.core.job.flow;

View File

@@ -0,0 +1,6 @@
/**
* Basic implementations of flow constructs
*
* @author Michael Minella
*/
package org.springframework.batch.core.job.flow.support;

View File

@@ -0,0 +1,6 @@
/**
* States used in defining the underlying Spring Batch state machine
*
* @author Michael Minella
*/
package org.springframework.batch.core.job.flow.support.state;

View File

@@ -0,0 +1,6 @@
/**
* Specific implementations of job concerns.
*
* @author Michael Minella
*/
package org.springframework.batch.core.job;

View File

@@ -1,7 +0,0 @@
<html>
<body>
<p>
Specific implementations of job concerns.
</p>
</body>
</html>

View File

@@ -0,0 +1,6 @@
/**
* Extensions of Spring components to support JSR-352 functionality.
*
* @author Michael Minella
*/
package org.springframework.batch.core.jsr.configuration.support;

View File

@@ -0,0 +1,6 @@
/**
* XML parsers for JSR-352 based Job Specification Language (JSL).
*
* @author Michael Minella
*/
package org.springframework.batch.core.jsr.configuration.xml;

View File

@@ -0,0 +1,6 @@
/**
* JSR-352 specific extensions of Flow constructs (executor and job).
*
* @author Michael Minella
*/
package org.springframework.batch.core.jsr.job.flow;

View File

@@ -0,0 +1,6 @@
/**
* JSR-352 specific flow extensions.
*
* @author Michael Minella
*/
package org.springframework.batch.core.jsr.job.flow.support;

View File

@@ -0,0 +1,6 @@
/**
* JSR-352 specific states used in flow execution.
*
* @author Michael Minella
*/
package org.springframework.batch.core.jsr.job.flow.support.state;

View File

@@ -0,0 +1,6 @@
/**
* JSR-352 specific handler implementations.
*
* @author Michael Minella
*/
package org.springframework.batch.core.jsr.job;

View File

@@ -0,0 +1,6 @@
/**
* Implementation of the JSR-352 specific job launching facilities.
*
* @author Michael Minella
*/
package org.springframework.batch.core.jsr.launch;

View File

@@ -0,0 +1,6 @@
/**
* Extensions of core batch components to apply JSR-352 specific logic.
*
* @author Michael Minella
*/
package org.springframework.batch.core.jsr;

View File

@@ -41,7 +41,6 @@ import org.springframework.batch.core.JobExecutionException;
import org.springframework.batch.core.Step;
import org.springframework.batch.core.StepExecution;
import org.springframework.batch.core.jsr.configuration.support.BatchPropertyContext;
import org.springframework.batch.core.partition.JsrStepExecutionSplitter;
import org.springframework.batch.core.partition.PartitionHandler;
import org.springframework.batch.core.partition.StepExecutionSplitter;
import org.springframework.batch.core.repository.JobRepository;

View File

@@ -13,11 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.batch.core.partition;
import java.util.Comparator;
import java.util.Set;
import java.util.TreeSet;
package org.springframework.batch.core.jsr.partition;
import org.springframework.batch.core.JobExecution;
import org.springframework.batch.core.JobExecutionException;
@@ -27,6 +23,10 @@ import org.springframework.batch.core.partition.support.SimpleStepExecutionSplit
import org.springframework.batch.core.repository.JobRepository;
import org.springframework.batch.item.ExecutionContext;
import java.util.Comparator;
import java.util.Set;
import java.util.TreeSet;
/**
* Provides JSR-352 specific behavior for the splitting of {@link StepExecution}s.
*

View File

@@ -0,0 +1,6 @@
/**
* Implementation of JSR-352 specific partitioning extensions.
*
* @author Michael Minella
*/
package org.springframework.batch.core.jsr.partition;

View File

@@ -0,0 +1,6 @@
/**
* Classes for supporting JSR-352's {@link javax.batch.api.Batchlet}.
*
* @author Michael Minella
*/
package org.springframework.batch.core.jsr.step.batchlet;

View File

@@ -0,0 +1,6 @@
/**
* Extensions to step related builders to implement JSR-352 specific functionality
*
* @author Michael Minella
*/
package org.springframework.batch.core.jsr.step.builder;

View File

@@ -0,0 +1,6 @@
/**
* JSR-352 specific components for implementing item based processing including fault tolerance.
*
* @author Michael Minella
*/
package org.springframework.batch.core.jsr.step.item;

View File

@@ -0,0 +1,6 @@
/**
* JSR-352 extensions of existing batch {@link org.springframework.batch.core.Step} types.
*
* @author Michael Minella
*/
package org.springframework.batch.core.jsr.step;

View File

@@ -0,0 +1,6 @@
/**
* Interfaces and simple implementations of launch concerns.
*
* @author Michael Minella
*/
package org.springframework.batch.core.launch;

View File

@@ -1,7 +0,0 @@
<html>
<body>
<p>
Interfaces and simple implementations of launch concerns.
</p>
</body>
</html>

View File

@@ -0,0 +1,6 @@
/**
* Support classes for use in bootstrap and launch implementations or configurations.
*
* @author Michael Minella
*/
package org.springframework.batch.core.launch.support;

View File

@@ -1,7 +0,0 @@
<html>
<body>
<p>
Support classes for use in bootstrap and launch implementations or configurations.
</p>
</body>
</html>

View File

@@ -0,0 +1,6 @@
/**
* Generic implementations of core batch listener interfaces.
*
* @author Michael Minella
*/
package org.springframework.batch.core.listener;

View File

@@ -1,7 +0,0 @@
<html>
<body>
<p>
Generic implementations of core batch listener interfaces.
</p>
</body>
</html>

View File

@@ -0,0 +1,8 @@
/**
* Core domain context for Spring Batch covering jobs, steps, configuration and execution abstractions. Most classes
* here are interfaces with implementations saved for specific applications. This is the public API of Spring Batch.
* There is a reference implementation of the core interfaces in the execution module.
*
* @author Michael Minella
*/
package org.springframework.batch.core;

View File

@@ -1,11 +0,0 @@
<html>
<body>
<p>
Core domain context for Spring Batch covering jobs, steps,
configuration and execution abstractions. Most classes here are
interfaces with implementations saved for specific applications. This
is the public API of Spring Batch. There is a reference
implementation of the core interfaces in the execution module.
</p>
</body>
</html>

View File

@@ -0,0 +1,6 @@
/**
* Interfaces for partitioning components.
*
* @author Michael Minella
*/
package org.springframework.batch.core.partition;

View File

@@ -0,0 +1,6 @@
/**
* Implementation of common partition components.
*
* @author Michael Minella
*/
package org.springframework.batch.core.partition.support;

View File

@@ -0,0 +1,6 @@
/**
* Specific implementations of dao concerns.
*
* @author Michael Minella
*/
package org.springframework.batch.core.repository.dao;

View File

@@ -1,7 +0,0 @@
<html>
<body>
<p>
Specific implementations of dao concerns.
</p>
</body>
</html>

View File

@@ -0,0 +1,6 @@
/**
* Interfaces and generic implementations of repository concerns.
*
* @author Michael Minella
*/
package org.springframework.batch.core.repository;

View File

@@ -1,7 +0,0 @@
<html>
<body>
<p>
Interfaces and generic implementations of repository concerns.
</p>
</body>
</html>

View File

@@ -0,0 +1,6 @@
/**
* Specific implementations of repository concerns.
*
* @author Michael Minella
*/
package org.springframework.batch.core.repository.support;

View File

@@ -1,7 +0,0 @@
<html>
<body>
<p>
Specific implementations of repository concerns.
</p>
</body>
</html>

View File

@@ -0,0 +1,6 @@
/**
* Implementation of the contexts for each of the custom bean scopes in Spring Batch (Job and Step).
*
* @author Michael Minella
*/
package org.springframework.batch.core.scope.context;

View File

@@ -0,0 +1,6 @@
/**
* Implementation of Spring Batch specific bean scopes (Job and Step).
*
* @author Michael Minella
*/
package org.springframework.batch.core.scope;

View File

@@ -0,0 +1,6 @@
/**
* Step level builders for java based job configuration.
*
* @author Michael Minella
*/
package org.springframework.batch.core.step.builder;

View File

@@ -0,0 +1,6 @@
/**
* Factories for step level components.
*
* @author Michael Minella
*/
package org.springframework.batch.core.step.factory;

View File

@@ -0,0 +1,6 @@
/**
* Specific implementations of step concerns for item-oriented approach.
*
* @author Michael Minella
*/
package org.springframework.batch.core.step.item;

View File

@@ -1,7 +0,0 @@
<html>
<body>
<p>
Specific implementations of step concerns for item-oriented approach.
</p>
</body>
</html>

View File

@@ -0,0 +1,6 @@
/**
* {@link org.springframework.batch.core.step.job.JobStep} and related components.
*
* @author Michael Minella
*/
package org.springframework.batch.core.step.job;

View File

@@ -0,0 +1,6 @@
/**
* Specific implementations of step concerns.
*
* @author Michael Minella
*/
package org.springframework.batch.core.step;

View File

@@ -1,7 +0,0 @@
<html>
<body>
<p>
Specific implementations of step concerns.
</p>
</body>
</html>

View File

@@ -0,0 +1,6 @@
/**
* Specific implementations of skip concerns for items in a step.
*
* @author Michael Minella
*/
package org.springframework.batch.core.step.skip;

View File

@@ -1,7 +0,0 @@
<html>
<body>
<p>
Specific implementations of skip concerns for items in a step.
</p>
</body>
</html>

View File

@@ -0,0 +1,6 @@
/**
* Interfaces and generic implementations of tasklet concerns.
*
* @author Michael Minella
*/
package org.springframework.batch.core.step.tasklet;

View File

@@ -1,7 +0,0 @@
<html>
<body>
<p>
Interfaces and generic implementations of tasklet concerns.
</p>
</body>
</html>

View File

@@ -36,7 +36,7 @@ import org.springframework.batch.core.job.flow.support.state.StepState;
import org.springframework.batch.core.jsr.configuration.support.BatchPropertyContext;
import org.springframework.batch.core.jsr.partition.JsrPartitionHandler;
import org.springframework.batch.core.jsr.step.PartitionStep;
import org.springframework.batch.core.partition.JsrStepExecutionSplitter;
import org.springframework.batch.core.jsr.partition.JsrStepExecutionSplitter;
import org.springframework.batch.core.repository.JobRepository;
import org.springframework.batch.core.repository.dao.JobExecutionDao;
import org.springframework.batch.core.repository.support.MapJobRepositoryFactoryBean;

View File

@@ -44,7 +44,6 @@ import org.springframework.batch.core.StepExecution;
import org.springframework.batch.core.jsr.JsrTestUtils;
import org.springframework.batch.core.jsr.configuration.support.BatchPropertyContext;
import org.springframework.batch.core.jsr.step.batchlet.BatchletSupport;
import org.springframework.batch.core.partition.JsrStepExecutionSplitter;
import org.springframework.batch.core.repository.JobRepository;
import org.springframework.batch.core.repository.support.MapJobRepositoryFactoryBean;
import org.springframework.batch.core.step.JobRepositorySupport;

View File

@@ -24,7 +24,6 @@ import org.junit.Before;
import org.junit.Test;
import org.springframework.batch.core.JobExecution;
import org.springframework.batch.core.StepExecution;
import org.springframework.batch.core.partition.JsrStepExecutionSplitter;
import org.springframework.batch.core.step.JobRepositorySupport;
public class JsrStepExecutionSplitterTests {

View File

@@ -0,0 +1,6 @@
/**
* <p>
* Adapters for Plain Old Java Objects.
* </p>
*/
package org.springframework.batch.item.adapter;

View File

@@ -1,7 +0,0 @@
<html>
<body>
<p>
Adapters for Plain Old Java Objects.
</p>
</body>
</html>

View File

@@ -0,0 +1,6 @@
/**
* AMQP related batch components.
*
* @author Michael Minella
*/
package org.springframework.batch.item.amqp;

View File

@@ -0,0 +1,6 @@
/**
* Spring Data related readers and writers.
*
* @author Michael Minella
*/
package org.springframework.batch.item.data;

View File

@@ -0,0 +1,6 @@
/**
* Support classes for components using various ORM related technologies.
*
* @author Michael Minella
*/
package org.springframework.batch.item.database.orm;

View File

@@ -0,0 +1,6 @@
/**
* <p>
* Infrastructure implementations of database based item readers and writers.
* </p>
*/
package org.springframework.batch.item.database;

View File

@@ -1,7 +0,0 @@
<html>
<body>
<p>
Infrastructure implementations of database based item readers and writers.
</p>
</body>
</html>

View File

@@ -0,0 +1,6 @@
/**
* Support classes for database specific semantics.
*
* @author Michael Minella
*/
package org.springframework.batch.item.database.support;

View File

@@ -0,0 +1,6 @@
/**
* <p>
* Infrastructure implementations of io file support mapping concerns.
* </p>
*/
package org.springframework.batch.item.file.mapping;

View File

@@ -1,7 +0,0 @@
<html>
<body>
<p>
Infrastructure implementations of io file support mapping concerns.
</p>
</body>
</html>

View File

@@ -0,0 +1,6 @@
/**
* <p>
* Infrastructure implementations of io file concerns.
* </p>
*/
package org.springframework.batch.item.file;

View File

@@ -1,7 +0,0 @@
<html>
<body>
<p>
Infrastructure implementations of io file concerns.
</p>
</body>
</html>

View File

@@ -0,0 +1,6 @@
/**
* <p>
* Infrastructure implementations of io file support separator concerns.
* </p>
*/
package org.springframework.batch.item.file.separator;

View File

@@ -1,7 +0,0 @@
<html>
<body>
<p>
Infrastructure implementations of io file support separator concerns.
</p>
</body>
</html>

View File

@@ -0,0 +1,6 @@
/**
* <p>
* Infrastructure implementations of io file support transform concerns.
* </p>
*/
package org.springframework.batch.item.file.transform;

View File

@@ -1,7 +0,0 @@
<html>
<body>
<p>
Infrastructure implementations of io file support transform concerns.
</p>
</body>
</html>

View File

@@ -0,0 +1,6 @@
/**
* JMS based reader/writer and related components.
*
* @author Michael Minella
*/
package org.springframework.batch.item.jms;

View File

@@ -0,0 +1,6 @@
/**
* Java Mail based components.
*
* @author Michael Minella
*/
package org.springframework.batch.item.mail;

View File

@@ -0,0 +1,6 @@
/**
* <p>
* Infrastructure interfaces and primary dependencies for item concerns.
* </p>
*/
package org.springframework.batch.item;

View File

@@ -1,7 +0,0 @@
<html>
<body>
<p>
Infrastructure interfaces and primary dependencies for item concerns.
</p>
</body>
</html>

View File

@@ -0,0 +1,6 @@
/**
* <p>
* Internal support package
* </p>
*/
package org.springframework.batch.item.support;

View File

@@ -1,7 +0,0 @@
<html>
<body>
<p>
Internal support package
</p>
</body>
</html>

View File

@@ -0,0 +1,6 @@
/**
* <p>
* Infrastructure implementations of item validator concerns.
* </p>
*/
package org.springframework.batch.item.validator;

View File

@@ -1,7 +0,0 @@
<html>
<body>
<p>
Infrastructure implementations of item validator concerns.
</p>
</body>
</html>

View File

@@ -0,0 +1,6 @@
/**
* <p>
* Infrastructure implementations of xml input and output.
* </p>
*/
package org.springframework.batch.item.xml;

View File

@@ -1,7 +0,0 @@
<html>
<body>
<p>
Infrastructure implementations of xml input and output.
</p>
</body>
</html>

View File

@@ -0,0 +1,6 @@
/**
* Components for adapting JSR item based components to Spring Batch.
*
* @author Michael Minella
*/
package org.springframework.batch.jsr.item;

View File

@@ -0,0 +1,6 @@
/**
* <p>
* Infrastructure implementations of . concerns.
* </p>
*/
package org.springframework.batch;

View File

@@ -1,7 +0,0 @@
<html>
<body>
<p>
Infrastructure implementations of . concerns.
</p>
</body>
</html>

View File

@@ -0,0 +1,6 @@
/**
* <p>
* Infrastructure implementations of repeat callback concerns.
* </p>
*/
package org.springframework.batch.repeat.callback;

View File

@@ -1,7 +0,0 @@
<html>
<body>
<p>
Infrastructure implementations of repeat callback concerns.
</p>
</body>
</html>

View File

@@ -0,0 +1,6 @@
/**
* <p>
* Infrastructure implementations of repeat context concerns.
* </p>
*/
package org.springframework.batch.repeat.context;

View File

@@ -1,7 +0,0 @@
<html>
<body>
<p>
Infrastructure implementations of repeat context concerns.
</p>
</body>
</html>

View File

@@ -0,0 +1,6 @@
/**
* <p>
* Infrastructure implementations of repeat exception handler concerns.
* </p>
*/
package org.springframework.batch.repeat.exception;

Some files were not shown because too many files have changed in this diff Show More