Repository: incubator-batchee Updated Branches: refs/heads/master f2c7449ed -> ff8bbbd19
BATCHEE-129 fixed javadoc errors Project: http://git-wip-us.apache.org/repos/asf/incubator-batchee/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-batchee/commit/ff8bbbd1 Tree: http://git-wip-us.apache.org/repos/asf/incubator-batchee/tree/ff8bbbd1 Diff: http://git-wip-us.apache.org/repos/asf/incubator-batchee/diff/ff8bbbd1 Branch: refs/heads/master Commit: ff8bbbd195a27efdcc5cde8e383b9e3d39914a46 Parents: f2c7449 Author: Reinhard Sandtner <[email protected]> Authored: Fri Dec 1 21:24:26 2017 +0100 Committer: Reinhard Sandtner <[email protected]> Committed: Fri Dec 1 21:24:26 2017 +0100 ---------------------------------------------------------------------- .../SingleThreadedStepController.java | 4 +- .../jpa/provider/EEEntityManagerProvider.java | 13 +- .../java/org/apache/batchee/jaxb/Analyzer.java | 28 ++-- .../apache/batchee/jaxb/BatchArtifactRef.java | 24 ++-- .../org/apache/batchee/jaxb/BatchArtifacts.java | 38 +++-- .../java/org/apache/batchee/jaxb/Batchlet.java | 28 ++-- .../batchee/jaxb/CheckpointAlgorithm.java | 28 ++-- .../java/org/apache/batchee/jaxb/Chunk.java | 48 +++---- .../java/org/apache/batchee/jaxb/Collector.java | 28 ++-- .../java/org/apache/batchee/jaxb/Decision.java | 44 +++--- .../main/java/org/apache/batchee/jaxb/End.java | 20 +-- .../batchee/jaxb/ExceptionClassFilter.java | 141 +++++++++---------- .../main/java/org/apache/batchee/jaxb/Fail.java | 22 +-- .../main/java/org/apache/batchee/jaxb/Flow.java | 66 ++++----- .../org/apache/batchee/jaxb/ItemProcessor.java | 28 ++-- .../org/apache/batchee/jaxb/ItemReader.java | 28 ++-- .../org/apache/batchee/jaxb/ItemWriter.java | 28 ++-- .../java/org/apache/batchee/jaxb/JSLJob.java | 61 ++++---- .../org/apache/batchee/jaxb/JSLProperties.java | 38 +++-- .../java/org/apache/batchee/jaxb/Listener.java | 28 ++-- .../java/org/apache/batchee/jaxb/Listeners.java | 36 +++-- .../main/java/org/apache/batchee/jaxb/Next.java | 24 ++-- .../java/org/apache/batchee/jaxb/Partition.java | 36 ++--- .../apache/batchee/jaxb/PartitionMapper.java | 28 ++-- .../org/apache/batchee/jaxb/PartitionPlan.java | 42 +++--- .../apache/batchee/jaxb/PartitionReducer.java | 26 ++-- .../java/org/apache/batchee/jaxb/Property.java | 24 ++-- .../java/org/apache/batchee/jaxb/Split.java | 42 +++--- .../main/java/org/apache/batchee/jaxb/Step.java | 60 ++++---- .../main/java/org/apache/batchee/jaxb/Stop.java | 24 ++-- .../batchee/spi/PersistenceManagerService.java | 2 +- .../thread/AsyncEjbBatchThreadPoolService.java | 2 +- .../org/apache/batchee/tools/maven/BarMojo.java | 18 +-- 33 files changed, 529 insertions(+), 578 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-batchee/blob/ff8bbbd1/jbatch/src/main/java/org/apache/batchee/container/impl/controller/SingleThreadedStepController.java ---------------------------------------------------------------------- diff --git a/jbatch/src/main/java/org/apache/batchee/container/impl/controller/SingleThreadedStepController.java b/jbatch/src/main/java/org/apache/batchee/container/impl/controller/SingleThreadedStepController.java index a9b708a..62b3127 100755 --- a/jbatch/src/main/java/org/apache/batchee/container/impl/controller/SingleThreadedStepController.java +++ b/jbatch/src/main/java/org/apache/batchee/container/impl/controller/SingleThreadedStepController.java @@ -40,7 +40,7 @@ import javax.batch.api.partition.PartitionCollector; /** * When a partitioned step is run, this controller will only be used for the partition threads, * NOT the top-level main thread that the step executes upon. - * <p/> + * <p> * When a non-partitioned step is run this controller will be used as well (and there will be no * separate main thread with controller). */ @@ -71,7 +71,7 @@ public abstract class SingleThreadedStepController extends BaseStepController im Collector collector = step.getPartition().getCollector(); if (collector != null) { List<Property> propList = (collector.getProperties() == null) ? null : collector.getProperties().getPropertyList(); - /** + /* * Inject job flow, split, and step contexts into partition * artifacts like collectors and listeners some of these * contexts may be null http://git-wip-us.apache.org/repos/asf/incubator-batchee/blob/ff8bbbd1/jbatch/src/main/java/org/apache/batchee/container/services/persistence/jpa/provider/EEEntityManagerProvider.java ---------------------------------------------------------------------- diff --git a/jbatch/src/main/java/org/apache/batchee/container/services/persistence/jpa/provider/EEEntityManagerProvider.java b/jbatch/src/main/java/org/apache/batchee/container/services/persistence/jpa/provider/EEEntityManagerProvider.java index 399c099..ec81d36 100644 --- a/jbatch/src/main/java/org/apache/batchee/container/services/persistence/jpa/provider/EEEntityManagerProvider.java +++ b/jbatch/src/main/java/org/apache/batchee/container/services/persistence/jpa/provider/EEEntityManagerProvider.java @@ -31,13 +31,12 @@ import java.util.Properties; * * Typically: * - * - <code> - @PersistenceContext - @Produces - @Named - private EntityManager batcheeJpaEm; - </code> + * <pre><code> + * @PersistenceContext + * @Produces + * @Named + * private EntityManager batcheeJpaEm; + * </code></pre> */ public class EEEntityManagerProvider implements EntityManagerProvider { private EntityManager instance; http://git-wip-us.apache.org/repos/asf/incubator-batchee/blob/ff8bbbd1/jbatch/src/main/java/org/apache/batchee/jaxb/Analyzer.java ---------------------------------------------------------------------- diff --git a/jbatch/src/main/java/org/apache/batchee/jaxb/Analyzer.java b/jbatch/src/main/java/org/apache/batchee/jaxb/Analyzer.java index 7b69d93..d2a902f 100644 --- a/jbatch/src/main/java/org/apache/batchee/jaxb/Analyzer.java +++ b/jbatch/src/main/java/org/apache/batchee/jaxb/Analyzer.java @@ -15,21 +15,21 @@ import javax.xml.bind.annotation.XmlType; /** - * <p>Java class for Analyzer complex type. - * <p/> - * <p>The following schema fragment specifies the expected content contained within this class. - * <p/> + * Java class for Analyzer complex type. + * <p> + * The following schema fragment specifies the expected content contained within this class. + * * <pre> - * <complexType name="Analyzer"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <sequence> - * <element name="properties" type="{http://xmlns.jcp.org/xml/ns/javaee}Properties" minOccurs="0"/> - * </sequence> - * <attribute name="ref" use="required" type="{http://xmlns.jcp.org/xml/ns/javaee}artifactRef" /> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="Analyzer"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="properties" type="{http://xmlns.jcp.org/xml/ns/javaee}Properties" minOccurs="0"/> + * </sequence> + * <attribute name="ref" use="required" type="{http://xmlns.jcp.org/xml/ns/javaee}artifactRef" /> + * </restriction> + * </complexContent> + * </complexType> * </pre> */ @XmlAccessorType(XmlAccessType.FIELD) http://git-wip-us.apache.org/repos/asf/incubator-batchee/blob/ff8bbbd1/jbatch/src/main/java/org/apache/batchee/jaxb/BatchArtifactRef.java ---------------------------------------------------------------------- diff --git a/jbatch/src/main/java/org/apache/batchee/jaxb/BatchArtifactRef.java b/jbatch/src/main/java/org/apache/batchee/jaxb/BatchArtifactRef.java index f35e330..7fac74d 100644 --- a/jbatch/src/main/java/org/apache/batchee/jaxb/BatchArtifactRef.java +++ b/jbatch/src/main/java/org/apache/batchee/jaxb/BatchArtifactRef.java @@ -15,19 +15,19 @@ import javax.xml.bind.annotation.XmlType; /** - * <p>Java class for BatchArtifactRef complex type. - * <p/> - * <p>The following schema fragment specifies the expected content contained within this class. - * <p/> + * Java class for BatchArtifactRef complex type. + * <p> + * The following schema fragment specifies the expected content contained within this class. + * * <pre> - * <complexType name="BatchArtifactRef"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> - * <attribute name="class" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="BatchArtifactRef"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> + * <attribute name="class" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> + * </restriction> + * </complexContent> + * </complexType> * </pre> */ @XmlAccessorType(XmlAccessType.FIELD) http://git-wip-us.apache.org/repos/asf/incubator-batchee/blob/ff8bbbd1/jbatch/src/main/java/org/apache/batchee/jaxb/BatchArtifacts.java ---------------------------------------------------------------------- diff --git a/jbatch/src/main/java/org/apache/batchee/jaxb/BatchArtifacts.java b/jbatch/src/main/java/org/apache/batchee/jaxb/BatchArtifacts.java index 7750baf..560a899 100644 --- a/jbatch/src/main/java/org/apache/batchee/jaxb/BatchArtifacts.java +++ b/jbatch/src/main/java/org/apache/batchee/jaxb/BatchArtifacts.java @@ -16,20 +16,20 @@ import java.util.List; /** - * <p>Java class for BatchArtifacts complex type. - * <p/> - * <p>The following schema fragment specifies the expected content contained within this class. - * <p/> + * Java class for BatchArtifacts complex type. + * <p> + * The following schema fragment specifies the expected content contained within this class. + * * <pre> - * <complexType name="BatchArtifacts"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <sequence> - * <element name="ref" type="{http://xmlns.jcp.org/xml/ns/javaee}BatchArtifactRef" maxOccurs="unbounded" minOccurs="0"/> - * </sequence> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="BatchArtifacts"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="ref" type="{http://xmlns.jcp.org/xml/ns/javaee}BatchArtifactRef" maxOccurs="unbounded" minOccurs="0"/> + * </sequence> + * </restriction> + * </complexContent> + * </complexType> * </pre> */ @XmlAccessorType(XmlAccessType.FIELD) @@ -42,21 +42,17 @@ public class BatchArtifacts { /** * Gets the value of the ref property. - * <p/> - * <p/> + * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. - * This is why there is not a <CODE>set</CODE> method for the ref property. - * <p/> - * <p/> + * This is why there is not a {@code set} method for the ref property. + * <p> * For example, to add a new item, do as follows: * <pre> * getRef().add(newItem); * </pre> - * <p/> - * <p/> - * <p/> + * <p> * Objects of the following type(s) are allowed in the list * {@link BatchArtifactRef } */ http://git-wip-us.apache.org/repos/asf/incubator-batchee/blob/ff8bbbd1/jbatch/src/main/java/org/apache/batchee/jaxb/Batchlet.java ---------------------------------------------------------------------- diff --git a/jbatch/src/main/java/org/apache/batchee/jaxb/Batchlet.java b/jbatch/src/main/java/org/apache/batchee/jaxb/Batchlet.java index 406cb64..45b2c83 100644 --- a/jbatch/src/main/java/org/apache/batchee/jaxb/Batchlet.java +++ b/jbatch/src/main/java/org/apache/batchee/jaxb/Batchlet.java @@ -15,21 +15,21 @@ import javax.xml.bind.annotation.XmlType; /** - * <p>Java class for Batchlet complex type. - * <p/> - * <p>The following schema fragment specifies the expected content contained within this class. - * <p/> + * Java class for Batchlet complex type. + * <p> + * The following schema fragment specifies the expected content contained within this class. + * * <pre> - * <complexType name="Batchlet"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <sequence> - * <element name="properties" type="{http://xmlns.jcp.org/xml/ns/javaee}Properties" minOccurs="0"/> - * </sequence> - * <attribute name="ref" use="required" type="{http://xmlns.jcp.org/xml/ns/javaee}artifactRef" /> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="Batchlet"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="properties" type="{http://xmlns.jcp.org/xml/ns/javaee}Properties" minOccurs="0"/> + * </sequence> + * <attribute name="ref" use="required" type="{http://xmlns.jcp.org/xml/ns/javaee}artifactRef" /> + * </restriction> + * </complexContent> + * </complexType> * </pre> */ @XmlAccessorType(XmlAccessType.FIELD) http://git-wip-us.apache.org/repos/asf/incubator-batchee/blob/ff8bbbd1/jbatch/src/main/java/org/apache/batchee/jaxb/CheckpointAlgorithm.java ---------------------------------------------------------------------- diff --git a/jbatch/src/main/java/org/apache/batchee/jaxb/CheckpointAlgorithm.java b/jbatch/src/main/java/org/apache/batchee/jaxb/CheckpointAlgorithm.java index 97716b2..f931eb4 100644 --- a/jbatch/src/main/java/org/apache/batchee/jaxb/CheckpointAlgorithm.java +++ b/jbatch/src/main/java/org/apache/batchee/jaxb/CheckpointAlgorithm.java @@ -15,21 +15,21 @@ import javax.xml.bind.annotation.XmlType; /** - * <p>Java class for CheckpointAlgorithm complex type. - * <p/> - * <p>The following schema fragment specifies the expected content contained within this class. - * <p/> + * Java class for CheckpointAlgorithm complex type. + * <p> + * The following schema fragment specifies the expected content contained within this class. + * * <pre> - * <complexType name="CheckpointAlgorithm"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <sequence> - * <element name="properties" type="{http://xmlns.jcp.org/xml/ns/javaee}Properties" minOccurs="0"/> - * </sequence> - * <attribute name="ref" use="required" type="{http://xmlns.jcp.org/xml/ns/javaee}artifactRef" /> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="CheckpointAlgorithm"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="properties" type="{http://xmlns.jcp.org/xml/ns/javaee}Properties" minOccurs="0"/> + * </sequence> + * <attribute name="ref" use="required" type="{http://xmlns.jcp.org/xml/ns/javaee}artifactRef" /> + * </restriction> + * </complexContent> + * </complexType> * </pre> */ @XmlAccessorType(XmlAccessType.FIELD) http://git-wip-us.apache.org/repos/asf/incubator-batchee/blob/ff8bbbd1/jbatch/src/main/java/org/apache/batchee/jaxb/Chunk.java ---------------------------------------------------------------------- diff --git a/jbatch/src/main/java/org/apache/batchee/jaxb/Chunk.java b/jbatch/src/main/java/org/apache/batchee/jaxb/Chunk.java index 8f432d5..a47a503 100644 --- a/jbatch/src/main/java/org/apache/batchee/jaxb/Chunk.java +++ b/jbatch/src/main/java/org/apache/batchee/jaxb/Chunk.java @@ -16,31 +16,31 @@ import javax.xml.bind.annotation.XmlType; /** - * <p>Java class for Chunk complex type. - * <p/> - * <p>The following schema fragment specifies the expected content contained within this class. - * <p/> + * Java class for Chunk complex type. + * <p> + * The following schema fragment specifies the expected content contained within this class. + * * <pre> - * <complexType name="Chunk"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <sequence> - * <element name="reader" type="{http://xmlns.jcp.org/xml/ns/javaee}ItemReader"/> - * <element name="processor" type="{http://xmlns.jcp.org/xml/ns/javaee}ItemProcessor" minOccurs="0"/> - * <element name="writer" type="{http://xmlns.jcp.org/xml/ns/javaee}ItemWriter"/> - * <element name="checkpoint-algorithm" type="{http://xmlns.jcp.org/xml/ns/javaee}CheckpointAlgorithm" minOccurs="0"/> - * <element name="skippable-exception-classes" type="{http://xmlns.jcp.org/xml/ns/javaee}ExceptionClassFilter" minOccurs="0"/> - * <element name="retryable-exception-classes" type="{http://xmlns.jcp.org/xml/ns/javaee}ExceptionClassFilter" minOccurs="0"/> - * <element name="no-rollback-exception-classes" type="{http://xmlns.jcp.org/xml/ns/javaee}ExceptionClassFilter" minOccurs="0"/> - * </sequence> - * <attribute name="checkpoint-policy" type="{http://www.w3.org/2001/XMLSchema}string" /> - * <attribute name="item-count" type="{http://www.w3.org/2001/XMLSchema}string" /> - * <attribute name="time-limit" type="{http://www.w3.org/2001/XMLSchema}string" /> - * <attribute name="skip-limit" type="{http://www.w3.org/2001/XMLSchema}string" /> - * <attribute name="retry-limit" type="{http://www.w3.org/2001/XMLSchema}string" /> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="Chunk"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="reader" type="{http://xmlns.jcp.org/xml/ns/javaee}ItemReader"/> + * <element name="processor" type="{http://xmlns.jcp.org/xml/ns/javaee}ItemProcessor" minOccurs="0"/> + * <element name="writer" type="{http://xmlns.jcp.org/xml/ns/javaee}ItemWriter"/> + * <element name="checkpoint-algorithm" type="{http://xmlns.jcp.org/xml/ns/javaee}CheckpointAlgorithm" minOccurs="0"/> + * <element name="skippable-exception-classes" type="{http://xmlns.jcp.org/xml/ns/javaee}ExceptionClassFilter" minOccurs="0"/> + * <element name="retryable-exception-classes" type="{http://xmlns.jcp.org/xml/ns/javaee}ExceptionClassFilter" minOccurs="0"/> + * <element name="no-rollback-exception-classes" type="{http://xmlns.jcp.org/xml/ns/javaee}ExceptionClassFilter" minOccurs="0"/> + * </sequence> + * <attribute name="checkpoint-policy" type="{http://www.w3.org/2001/XMLSchema}string" /> + * <attribute name="item-count" type="{http://www.w3.org/2001/XMLSchema}string" /> + * <attribute name="time-limit" type="{http://www.w3.org/2001/XMLSchema}string" /> + * <attribute name="skip-limit" type="{http://www.w3.org/2001/XMLSchema}string" /> + * <attribute name="retry-limit" type="{http://www.w3.org/2001/XMLSchema}string" /> + * </restriction> + * </complexContent> + * </complexType> * </pre> */ @XmlAccessorType(XmlAccessType.FIELD) http://git-wip-us.apache.org/repos/asf/incubator-batchee/blob/ff8bbbd1/jbatch/src/main/java/org/apache/batchee/jaxb/Collector.java ---------------------------------------------------------------------- diff --git a/jbatch/src/main/java/org/apache/batchee/jaxb/Collector.java b/jbatch/src/main/java/org/apache/batchee/jaxb/Collector.java index 28921a9..680ef00 100644 --- a/jbatch/src/main/java/org/apache/batchee/jaxb/Collector.java +++ b/jbatch/src/main/java/org/apache/batchee/jaxb/Collector.java @@ -15,21 +15,21 @@ import javax.xml.bind.annotation.XmlType; /** - * <p>Java class for Collector complex type. - * <p/> - * <p>The following schema fragment specifies the expected content contained within this class. - * <p/> + * Java class for Collector complex type. + * <p> + * The following schema fragment specifies the expected content contained within this class. + * * <pre> - * <complexType name="Collector"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <sequence> - * <element name="properties" type="{http://xmlns.jcp.org/xml/ns/javaee}Properties" minOccurs="0"/> - * </sequence> - * <attribute name="ref" use="required" type="{http://xmlns.jcp.org/xml/ns/javaee}artifactRef" /> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="Collector"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="properties" type="{http://xmlns.jcp.org/xml/ns/javaee}Properties" minOccurs="0"/> + * </sequence> + * <attribute name="ref" use="required" type="{http://xmlns.jcp.org/xml/ns/javaee}artifactRef" /> + * </restriction> + * </complexContent> + * </complexType> * </pre> */ @XmlAccessorType(XmlAccessType.FIELD) http://git-wip-us.apache.org/repos/asf/incubator-batchee/blob/ff8bbbd1/jbatch/src/main/java/org/apache/batchee/jaxb/Decision.java ---------------------------------------------------------------------- diff --git a/jbatch/src/main/java/org/apache/batchee/jaxb/Decision.java b/jbatch/src/main/java/org/apache/batchee/jaxb/Decision.java index 7fff2f2..1c662e5 100644 --- a/jbatch/src/main/java/org/apache/batchee/jaxb/Decision.java +++ b/jbatch/src/main/java/org/apache/batchee/jaxb/Decision.java @@ -26,23 +26,23 @@ import java.util.List; /** - * <p>Java class for Decision complex type. - * <p/> - * <p>The following schema fragment specifies the expected content contained within this class. - * <p/> + * Java class for Decision complex type. + * <p> + * The following schema fragment specifies the expected content contained within this class. + * * <pre> - * <complexType name="Decision"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <sequence> - * <element name="properties" type="{http://xmlns.jcp.org/xml/ns/javaee}Properties" minOccurs="0"/> - * <group ref="{http://xmlns.jcp.org/xml/ns/javaee}TransitionElements" maxOccurs="unbounded" minOccurs="0"/> - * </sequence> - * <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}ID" /> - * <attribute name="ref" use="required" type="{http://xmlns.jcp.org/xml/ns/javaee}artifactRef" /> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="Decision"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="properties" type="{http://xmlns.jcp.org/xml/ns/javaee}Properties" minOccurs="0"/> + * <group ref="{http://xmlns.jcp.org/xml/ns/javaee}TransitionElements" maxOccurs="unbounded" minOccurs="0"/> + * </sequence> + * <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}ID" /> + * <attribute name="ref" use="required" type="{http://xmlns.jcp.org/xml/ns/javaee}artifactRef" /> + * </restriction> + * </complexContent> + * </complexType> * </pre> */ @XmlAccessorType(XmlAccessType.FIELD) @@ -90,21 +90,17 @@ public class Decision implements ExecutionElement { /** * Gets the value of the transitionElements property. - * <p/> - * <p/> + * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. - * This is why there is not a <CODE>set</CODE> method for the transitionElements property. - * <p/> - * <p/> + * This is why there is not a {@code set} method for the transitionElements property. + * <p> * For example, to add a new item, do as follows: * <pre> * getTransitionElements().add(newItem); * </pre> - * <p/> - * <p/> - * <p/> + * <p> * Objects of the following type(s) are allowed in the list * {@link Next } * {@link Stop } http://git-wip-us.apache.org/repos/asf/incubator-batchee/blob/ff8bbbd1/jbatch/src/main/java/org/apache/batchee/jaxb/End.java ---------------------------------------------------------------------- diff --git a/jbatch/src/main/java/org/apache/batchee/jaxb/End.java b/jbatch/src/main/java/org/apache/batchee/jaxb/End.java index ff3f7dc..7148264 100644 --- a/jbatch/src/main/java/org/apache/batchee/jaxb/End.java +++ b/jbatch/src/main/java/org/apache/batchee/jaxb/End.java @@ -17,18 +17,18 @@ import javax.xml.bind.annotation.XmlType; /** - * <p>Java class for End complex type. - * <p/> + * Java class for End complex type. + * <p> * <p>The following schema fragment specifies the expected content contained within this class. - * <p/> + * * <pre> - * <complexType name="End"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <attGroup ref="{http://xmlns.jcp.org/xml/ns/javaee}TerminatingAttributes"/> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="End"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <attGroup ref="{http://xmlns.jcp.org/xml/ns/javaee}TerminatingAttributes"/> + * </restriction> + * </complexContent> + * </complexType> * </pre> */ @XmlAccessorType(XmlAccessType.FIELD) http://git-wip-us.apache.org/repos/asf/incubator-batchee/blob/ff8bbbd1/jbatch/src/main/java/org/apache/batchee/jaxb/ExceptionClassFilter.java ---------------------------------------------------------------------- diff --git a/jbatch/src/main/java/org/apache/batchee/jaxb/ExceptionClassFilter.java b/jbatch/src/main/java/org/apache/batchee/jaxb/ExceptionClassFilter.java index b8fb5a4..fe0c950 100644 --- a/jbatch/src/main/java/org/apache/batchee/jaxb/ExceptionClassFilter.java +++ b/jbatch/src/main/java/org/apache/batchee/jaxb/ExceptionClassFilter.java @@ -18,41 +18,41 @@ import java.util.List; /** - * <p>Java class for ExceptionClassFilter complex type. - * <p/> + * Java class for ExceptionClassFilter complex type. + * <p> * <p>The following schema fragment specifies the expected content contained within this class. - * <p/> + * * <pre> - * <complexType name="ExceptionClassFilter"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <sequence> - * <element name="include" maxOccurs="unbounded" minOccurs="0"> - * <complexType> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <sequence> - * </sequence> - * <attribute name="class" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> - * </restriction> - * </complexContent> - * </complexType> - * </element> - * <element name="exclude" maxOccurs="unbounded" minOccurs="0"> - * <complexType> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <sequence> - * </sequence> - * <attribute name="class" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> - * </restriction> - * </complexContent> - * </complexType> - * </element> - * </sequence> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="ExceptionClassFilter"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="include" maxOccurs="unbounded" minOccurs="0"> + * <complexType> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * </sequence> + * <attribute name="class" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> + * </restriction> + * </complexContent> + * </complexType> + * </element> + * <element name="exclude" maxOccurs="unbounded" minOccurs="0"> + * <complexType> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * </sequence> + * <attribute name="class" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> + * </restriction> + * </complexContent> + * </complexType> + * </element> + * </sequence> + * </restriction> + * </complexContent> + * </complexType> * </pre> */ @XmlAccessorType(XmlAccessType.FIELD) @@ -69,21 +69,17 @@ public class ExceptionClassFilter { /** * Gets the value of the includeList property. - * <p/> - * <p/> + * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. - * This is why there is not a <CODE>set</CODE> method for the includeList property. - * <p/> - * <p/> + * This is why there is not a {@code set} method for the includeList property. + * <p> * For example, to add a new item, do as follows: * <pre> * getIncludeList().add(newItem); * </pre> - * <p/> - * <p/> - * <p/> + * <p> * Objects of the following type(s) are allowed in the list * {@link ExceptionClassFilter.Include } */ @@ -96,21 +92,17 @@ public class ExceptionClassFilter { /** * Gets the value of the excludeList property. - * <p/> - * <p/> + * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. - * This is why there is not a <CODE>set</CODE> method for the excludeList property. - * <p/> - * <p/> + * This is why there is not a {@code set} method for the excludeList property. + * <p> * For example, to add a new item, do as follows: * <pre> * getExcludeList().add(newItem); * </pre> - * <p/> - * <p/> - * <p/> + * <p> * Objects of the following type(s) are allowed in the list * {@link ExceptionClassFilter.Exclude } */ @@ -123,20 +115,20 @@ public class ExceptionClassFilter { /** - * <p>Java class for anonymous complex type. - * <p/> - * <p>The following schema fragment specifies the expected content contained within this class. - * <p/> + * Java class for anonymous complex type. + * <p> + * The following schema fragment specifies the expected content contained within this class. + * * <pre> - * <complexType> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <sequence> - * </sequence> - * <attribute name="class" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> - * </restriction> - * </complexContent> - * </complexType> + * <complexType> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * </sequence> + * <attribute name="class" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> + * </restriction> + * </complexContent> + * </complexType> * </pre> */ @XmlAccessorType(XmlAccessType.FIELD) @@ -170,20 +162,19 @@ public class ExceptionClassFilter { /** - * <p>Java class for anonymous complex type. - * <p/> - * <p>The following schema fragment specifies the expected content contained within this class. - * <p/> + * Java class for anonymous complex type. + * <p> + * The following schema fragment specifies the expected content contained within this class. * <pre> - * <complexType> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <sequence> - * </sequence> - * <attribute name="class" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> - * </restriction> - * </complexContent> - * </complexType> + * <complexType> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * </sequence> + * <attribute name="class" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> + * </restriction> + * </complexContent> + * </complexType> * </pre> */ @XmlAccessorType(XmlAccessType.FIELD) http://git-wip-us.apache.org/repos/asf/incubator-batchee/blob/ff8bbbd1/jbatch/src/main/java/org/apache/batchee/jaxb/Fail.java ---------------------------------------------------------------------- diff --git a/jbatch/src/main/java/org/apache/batchee/jaxb/Fail.java b/jbatch/src/main/java/org/apache/batchee/jaxb/Fail.java index 19e5634..5ffbcda 100644 --- a/jbatch/src/main/java/org/apache/batchee/jaxb/Fail.java +++ b/jbatch/src/main/java/org/apache/batchee/jaxb/Fail.java @@ -17,18 +17,18 @@ import javax.xml.bind.annotation.XmlType; /** - * <p>Java class for Fail complex type. - * <p/> - * <p>The following schema fragment specifies the expected content contained within this class. - * <p/> + * Java class for Fail complex type. + * <p> + * The following schema fragment specifies the expected content contained within this class. + * * <pre> - * <complexType name="Fail"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <attGroup ref="{http://xmlns.jcp.org/xml/ns/javaee}TerminatingAttributes"/> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="Fail"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <attGroup ref="{http://xmlns.jcp.org/xml/ns/javaee}TerminatingAttributes"/> + * </restriction> + * </complexContent> + * </complexType> * </pre> */ @XmlAccessorType(XmlAccessType.FIELD) http://git-wip-us.apache.org/repos/asf/incubator-batchee/blob/ff8bbbd1/jbatch/src/main/java/org/apache/batchee/jaxb/Flow.java ---------------------------------------------------------------------- diff --git a/jbatch/src/main/java/org/apache/batchee/jaxb/Flow.java b/jbatch/src/main/java/org/apache/batchee/jaxb/Flow.java index 4c00071..3b9cc7c 100644 --- a/jbatch/src/main/java/org/apache/batchee/jaxb/Flow.java +++ b/jbatch/src/main/java/org/apache/batchee/jaxb/Flow.java @@ -26,28 +26,28 @@ import java.util.List; /** - * <p>Java class for Flow complex type. - * <p/> - * <p>The following schema fragment specifies the expected content contained within this class. - * <p/> + * Java class for Flow complex type. + * <p> + * The following schema fragment specifies the expected content contained within this class. + * * <pre> - * <complexType name="Flow"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <sequence> - * <choice maxOccurs="unbounded" minOccurs="0"> - * <element name="decision" type="{http://xmlns.jcp.org/xml/ns/javaee}Decision"/> - * <element name="flow" type="{http://xmlns.jcp.org/xml/ns/javaee}Flow"/> - * <element name="split" type="{http://xmlns.jcp.org/xml/ns/javaee}Split"/> - * <element name="step" type="{http://xmlns.jcp.org/xml/ns/javaee}Step"/> - * </choice> - * <group ref="{http://xmlns.jcp.org/xml/ns/javaee}TransitionElements" maxOccurs="unbounded" minOccurs="0"/> - * </sequence> - * <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}ID" /> - * <attribute name="next" type="{http://www.w3.org/2001/XMLSchema}string" /> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="Flow"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <choice maxOccurs="unbounded" minOccurs="0"> + * <element name="decision" type="{http://xmlns.jcp.org/xml/ns/javaee}Decision"/> + * <element name="flow" type="{http://xmlns.jcp.org/xml/ns/javaee}Flow"/> + * <element name="split" type="{http://xmlns.jcp.org/xml/ns/javaee}Split"/> + * <element name="step" type="{http://xmlns.jcp.org/xml/ns/javaee}Step"/> + * </choice> + * <group ref="{http://xmlns.jcp.org/xml/ns/javaee}TransitionElements" maxOccurs="unbounded" minOccurs="0"/> + * </sequence> + * <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}ID" /> + * <attribute name="next" type="{http://www.w3.org/2001/XMLSchema}string" /> + * </restriction> + * </complexContent> + * </complexType> * </pre> */ @XmlAccessorType(XmlAccessType.FIELD) @@ -81,21 +81,17 @@ public class Flow implements ExecutionElement { /** * Gets the value of the executionElements property. - * <p/> - * <p/> + * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. - * This is why there is not a <CODE>set</CODE> method for the executionElements property. - * <p/> - * <p/> + * This is why there is not a {@code set} method for the executionElements property. + * <p> * For example, to add a new item, do as follows: * <pre> * getExecutionElements().add(newItem); * </pre> - * <p/> - * <p/> - * <p/> + * <p> * Objects of the following type(s) are allowed in the list * {@link Split } * {@link Flow } @@ -111,21 +107,17 @@ public class Flow implements ExecutionElement { /** * Gets the value of the transitionElements property. - * <p/> - * <p/> + * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. - * This is why there is not a <CODE>set</CODE> method for the transitionElements property. - * <p/> - * <p/> + * This is why there is not a {@code set} method for the transitionElements property. + * <p> * For example, to add a new item, do as follows: * <pre> * getTransitionElements().add(newItem); * </pre> - * <p/> - * <p/> - * <p/> + * <p> * Objects of the following type(s) are allowed in the list * {@link Stop } * {@link Fail } http://git-wip-us.apache.org/repos/asf/incubator-batchee/blob/ff8bbbd1/jbatch/src/main/java/org/apache/batchee/jaxb/ItemProcessor.java ---------------------------------------------------------------------- diff --git a/jbatch/src/main/java/org/apache/batchee/jaxb/ItemProcessor.java b/jbatch/src/main/java/org/apache/batchee/jaxb/ItemProcessor.java index 1c6807b..86d1a62 100644 --- a/jbatch/src/main/java/org/apache/batchee/jaxb/ItemProcessor.java +++ b/jbatch/src/main/java/org/apache/batchee/jaxb/ItemProcessor.java @@ -15,21 +15,21 @@ import javax.xml.bind.annotation.XmlType; /** - * <p>Java class for ItemProcessor complex type. - * <p/> - * <p>The following schema fragment specifies the expected content contained within this class. - * <p/> + * Java class for ItemProcessor complex type. + * <p> + * The following schema fragment specifies the expected content contained within this class. + * * <pre> - * <complexType name="ItemProcessor"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <sequence> - * <element name="properties" type="{http://xmlns.jcp.org/xml/ns/javaee}Properties" minOccurs="0"/> - * </sequence> - * <attribute name="ref" use="required" type="{http://xmlns.jcp.org/xml/ns/javaee}artifactRef" /> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="ItemProcessor"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="properties" type="{http://xmlns.jcp.org/xml/ns/javaee}Properties" minOccurs="0"/> + * </sequence> + * <attribute name="ref" use="required" type="{http://xmlns.jcp.org/xml/ns/javaee}artifactRef" /> + * </restriction> + * </complexContent> + * </complexType> * </pre> */ @XmlAccessorType(XmlAccessType.FIELD) http://git-wip-us.apache.org/repos/asf/incubator-batchee/blob/ff8bbbd1/jbatch/src/main/java/org/apache/batchee/jaxb/ItemReader.java ---------------------------------------------------------------------- diff --git a/jbatch/src/main/java/org/apache/batchee/jaxb/ItemReader.java b/jbatch/src/main/java/org/apache/batchee/jaxb/ItemReader.java index 16b28aa..140a715 100644 --- a/jbatch/src/main/java/org/apache/batchee/jaxb/ItemReader.java +++ b/jbatch/src/main/java/org/apache/batchee/jaxb/ItemReader.java @@ -15,21 +15,21 @@ import javax.xml.bind.annotation.XmlType; /** - * <p>Java class for ItemReader complex type. - * <p/> - * <p>The following schema fragment specifies the expected content contained within this class. - * <p/> + * Java class for ItemReader complex type. + * <p> + * The following schema fragment specifies the expected content contained within this class. + * * <pre> - * <complexType name="ItemReader"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <sequence> - * <element name="properties" type="{http://xmlns.jcp.org/xml/ns/javaee}Properties" minOccurs="0"/> - * </sequence> - * <attribute name="ref" use="required" type="{http://xmlns.jcp.org/xml/ns/javaee}artifactRef" /> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="ItemReader"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="properties" type="{http://xmlns.jcp.org/xml/ns/javaee}Properties" minOccurs="0"/> + * </sequence> + * <attribute name="ref" use="required" type="{http://xmlns.jcp.org/xml/ns/javaee}artifactRef" /> + * </restriction> + * </complexContent> + * </complexType> * </pre> */ @XmlAccessorType(XmlAccessType.FIELD) http://git-wip-us.apache.org/repos/asf/incubator-batchee/blob/ff8bbbd1/jbatch/src/main/java/org/apache/batchee/jaxb/ItemWriter.java ---------------------------------------------------------------------- diff --git a/jbatch/src/main/java/org/apache/batchee/jaxb/ItemWriter.java b/jbatch/src/main/java/org/apache/batchee/jaxb/ItemWriter.java index dfe82b4..98006a9 100644 --- a/jbatch/src/main/java/org/apache/batchee/jaxb/ItemWriter.java +++ b/jbatch/src/main/java/org/apache/batchee/jaxb/ItemWriter.java @@ -15,21 +15,21 @@ import javax.xml.bind.annotation.XmlType; /** - * <p>Java class for ItemWriter complex type. - * <p/> - * <p>The following schema fragment specifies the expected content contained within this class. - * <p/> + * Java class for ItemWriter complex type. + * <p> + * The following schema fragment specifies the expected content contained within this class. + * * <pre> - * <complexType name="ItemWriter"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <sequence> - * <element name="properties" type="{http://xmlns.jcp.org/xml/ns/javaee}Properties" minOccurs="0"/> - * </sequence> - * <attribute name="ref" use="required" type="{http://xmlns.jcp.org/xml/ns/javaee}artifactRef" /> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="ItemWriter"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="properties" type="{http://xmlns.jcp.org/xml/ns/javaee}Properties" minOccurs="0"/> + * </sequence> + * <attribute name="ref" use="required" type="{http://xmlns.jcp.org/xml/ns/javaee}artifactRef" /> + * </restriction> + * </complexContent> + * </complexType> * </pre> */ @XmlAccessorType(XmlAccessType.FIELD) http://git-wip-us.apache.org/repos/asf/incubator-batchee/blob/ff8bbbd1/jbatch/src/main/java/org/apache/batchee/jaxb/JSLJob.java ---------------------------------------------------------------------- diff --git a/jbatch/src/main/java/org/apache/batchee/jaxb/JSLJob.java b/jbatch/src/main/java/org/apache/batchee/jaxb/JSLJob.java index 151f4d6..e4db57d 100644 --- a/jbatch/src/main/java/org/apache/batchee/jaxb/JSLJob.java +++ b/jbatch/src/main/java/org/apache/batchee/jaxb/JSLJob.java @@ -27,32 +27,31 @@ import java.util.List; /** * The type of a job definition, whether concrete or * abstract. This is the type of the root element of any JSL document. - * <p/> - * <p/> - * <p>Java class for Job complex type. - * <p/> - * <p>The following schema fragment specifies the expected content contained within this class. - * <p/> + * <p> + * Java class for Job complex type. + * <p> + * The following schema fragment specifies the expected content contained within this class. + * <p> * <pre> - * <complexType name="Job"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <sequence> - * <element name="properties" type="{http://xmlns.jcp.org/xml/ns/javaee}Properties" minOccurs="0"/> - * <element name="listeners" type="{http://xmlns.jcp.org/xml/ns/javaee}Listeners" minOccurs="0"/> - * <choice maxOccurs="unbounded" minOccurs="0"> - * <element name="decision" type="{http://xmlns.jcp.org/xml/ns/javaee}Decision"/> - * <element name="flow" type="{http://xmlns.jcp.org/xml/ns/javaee}Flow"/> - * <element name="split" type="{http://xmlns.jcp.org/xml/ns/javaee}Split"/> - * <element name="step" type="{http://xmlns.jcp.org/xml/ns/javaee}Step"/> - * </choice> - * </sequence> - * <attribute name="version" use="required" type="{http://www.w3.org/2001/XMLSchema}string" fixed="1.0" /> - * <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}ID" /> - * <attribute name="restartable" type="{http://www.w3.org/2001/XMLSchema}string" /> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="Job"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="properties" type="{http://xmlns.jcp.org/xml/ns/javaee}Properties" minOccurs="0"/> + * <element name="listeners" type="{http://xmlns.jcp.org/xml/ns/javaee}Listeners" minOccurs="0"/> + * <choice maxOccurs="unbounded" minOccurs="0"> + * <element name="decision" type="{http://xmlns.jcp.org/xml/ns/javaee}Decision"/> + * <element name="flow" type="{http://xmlns.jcp.org/xml/ns/javaee}Flow"/> + * <element name="split" type="{http://xmlns.jcp.org/xml/ns/javaee}Split"/> + * <element name="step" type="{http://xmlns.jcp.org/xml/ns/javaee}Step"/> + * </choice> + * </sequence> + * <attribute name="version" use="required" type="{http://www.w3.org/2001/XMLSchema}string" fixed="1.0" /> + * <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}ID" /> + * <attribute name="restartable" type="{http://www.w3.org/2001/XMLSchema}string" /> + * </restriction> + * </complexContent> + * </complexType> * </pre> */ @XmlAccessorType(XmlAccessType.FIELD) @@ -124,21 +123,17 @@ public class JSLJob { /** * Gets the value of the executionElements property. - * <p/> - * <p/> + * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. - * This is why there is not a <CODE>set</CODE> method for the executionElements property. - * <p/> - * <p/> + * This is why there is not a {@code set} method for the executionElements property. + * <p> * For example, to add a new item, do as follows: * <pre> * getExecutionElements().add(newItem); * </pre> - * <p/> - * <p/> - * <p/> + * <p> * Objects of the following type(s) are allowed in the list * {@link Flow } * {@link Step } http://git-wip-us.apache.org/repos/asf/incubator-batchee/blob/ff8bbbd1/jbatch/src/main/java/org/apache/batchee/jaxb/JSLProperties.java ---------------------------------------------------------------------- diff --git a/jbatch/src/main/java/org/apache/batchee/jaxb/JSLProperties.java b/jbatch/src/main/java/org/apache/batchee/jaxb/JSLProperties.java index 0a0119d..ad0f481 100644 --- a/jbatch/src/main/java/org/apache/batchee/jaxb/JSLProperties.java +++ b/jbatch/src/main/java/org/apache/batchee/jaxb/JSLProperties.java @@ -18,21 +18,21 @@ import java.util.List; /** - * <p>Java class for Properties complex type. - * <p/> + * Java class for Properties complex type. + * <p> * <p>The following schema fragment specifies the expected content contained within this class. - * <p/> + * * <pre> - * <complexType name="Properties"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <sequence> - * <element name="property" type="{http://xmlns.jcp.org/xml/ns/javaee}Property" maxOccurs="unbounded" minOccurs="0"/> - * </sequence> - * <attribute name="partition" type="{http://www.w3.org/2001/XMLSchema}string" /> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="Properties"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="property" type="{http://xmlns.jcp.org/xml/ns/javaee}Property" maxOccurs="unbounded" minOccurs="0"/> + * </sequence> + * <attribute name="partition" type="{http://www.w3.org/2001/XMLSchema}string" /> + * </restriction> + * </complexContent> + * </complexType> * </pre> */ @XmlAccessorType(XmlAccessType.FIELD) @@ -48,21 +48,17 @@ public class JSLProperties { /** * Gets the value of the propertyList property. - * <p/> - * <p/> + * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. - * This is why there is not a <CODE>set</CODE> method for the propertyList property. - * <p/> - * <p/> + * This is why there is not a {@code set} method for the propertyList property. + * <p> * For example, to add a new item, do as follows: * <pre> * getPropertyList().add(newItem); * </pre> - * <p/> - * <p/> - * <p/> + * <p> * Objects of the following type(s) are allowed in the list * {@link Property } */ http://git-wip-us.apache.org/repos/asf/incubator-batchee/blob/ff8bbbd1/jbatch/src/main/java/org/apache/batchee/jaxb/Listener.java ---------------------------------------------------------------------- diff --git a/jbatch/src/main/java/org/apache/batchee/jaxb/Listener.java b/jbatch/src/main/java/org/apache/batchee/jaxb/Listener.java index 9c6d2fe..be61b10 100644 --- a/jbatch/src/main/java/org/apache/batchee/jaxb/Listener.java +++ b/jbatch/src/main/java/org/apache/batchee/jaxb/Listener.java @@ -15,21 +15,21 @@ import javax.xml.bind.annotation.XmlType; /** - * <p>Java class for Listener complex type. - * <p/> - * <p>The following schema fragment specifies the expected content contained within this class. - * <p/> + * Java class for Listener complex type. + * <p> + * The following schema fragment specifies the expected content contained within this class. + * <p> * <pre> - * <complexType name="Listener"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <sequence> - * <element name="properties" type="{http://xmlns.jcp.org/xml/ns/javaee}Properties" minOccurs="0"/> - * </sequence> - * <attribute name="ref" use="required" type="{http://xmlns.jcp.org/xml/ns/javaee}artifactRef" /> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="Listener"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="properties" type="{http://xmlns.jcp.org/xml/ns/javaee}Properties" minOccurs="0"/> + * </sequence> + * <attribute name="ref" use="required" type="{http://xmlns.jcp.org/xml/ns/javaee}artifactRef" /> + * </restriction> + * </complexContent> + * </complexType> * </pre> */ @XmlAccessorType(XmlAccessType.FIELD) http://git-wip-us.apache.org/repos/asf/incubator-batchee/blob/ff8bbbd1/jbatch/src/main/java/org/apache/batchee/jaxb/Listeners.java ---------------------------------------------------------------------- diff --git a/jbatch/src/main/java/org/apache/batchee/jaxb/Listeners.java b/jbatch/src/main/java/org/apache/batchee/jaxb/Listeners.java index 2b359d4..5ab9427 100644 --- a/jbatch/src/main/java/org/apache/batchee/jaxb/Listeners.java +++ b/jbatch/src/main/java/org/apache/batchee/jaxb/Listeners.java @@ -17,20 +17,20 @@ import java.util.List; /** - * <p>Java class for Listeners complex type. - * <p/> + * Java class for Listeners complex type. + * <p> * <p>The following schema fragment specifies the expected content contained within this class. - * <p/> + * * <pre> - * <complexType name="Listeners"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <sequence> - * <element name="listener" type="{http://xmlns.jcp.org/xml/ns/javaee}Listener" maxOccurs="unbounded" minOccurs="0"/> - * </sequence> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="Listeners"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="listener" type="{http://xmlns.jcp.org/xml/ns/javaee}Listener" maxOccurs="unbounded" minOccurs="0"/> + * </sequence> + * </restriction> + * </complexContent> + * </complexType> * </pre> */ @XmlAccessorType(XmlAccessType.FIELD) @@ -44,21 +44,17 @@ public class Listeners { /** * Gets the value of the listenerList property. - * <p/> - * <p/> + * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. - * This is why there is not a <CODE>set</CODE> method for the listenerList property. - * <p/> - * <p/> + * This is why there is not a {@code set} method for the listenerList property. + * <p> * For example, to add a new item, do as follows: * <pre> * getListenerList().add(newItem); * </pre> - * <p/> - * <p/> - * <p/> + * <p> * Objects of the following type(s) are allowed in the list * {@link Listener } */ http://git-wip-us.apache.org/repos/asf/incubator-batchee/blob/ff8bbbd1/jbatch/src/main/java/org/apache/batchee/jaxb/Next.java ---------------------------------------------------------------------- diff --git a/jbatch/src/main/java/org/apache/batchee/jaxb/Next.java b/jbatch/src/main/java/org/apache/batchee/jaxb/Next.java index fd53d31..b63d101 100644 --- a/jbatch/src/main/java/org/apache/batchee/jaxb/Next.java +++ b/jbatch/src/main/java/org/apache/batchee/jaxb/Next.java @@ -17,19 +17,19 @@ import javax.xml.bind.annotation.XmlType; /** - * <p>Java class for Next complex type. - * <p/> - * <p>The following schema fragment specifies the expected content contained within this class. - * <p/> + * Java class for Next complex type. + * <p> + * The following schema fragment specifies the expected content contained within this class. + * * <pre> - * <complexType name="Next"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <attribute name="on" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> - * <attribute name="to" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="Next"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <attribute name="on" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> + * <attribute name="to" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> + * </restriction> + * </complexContent> + * </complexType> * </pre> */ @XmlAccessorType(XmlAccessType.FIELD) http://git-wip-us.apache.org/repos/asf/incubator-batchee/blob/ff8bbbd1/jbatch/src/main/java/org/apache/batchee/jaxb/Partition.java ---------------------------------------------------------------------- diff --git a/jbatch/src/main/java/org/apache/batchee/jaxb/Partition.java b/jbatch/src/main/java/org/apache/batchee/jaxb/Partition.java index 175e76d..de4d53e 100644 --- a/jbatch/src/main/java/org/apache/batchee/jaxb/Partition.java +++ b/jbatch/src/main/java/org/apache/batchee/jaxb/Partition.java @@ -14,26 +14,26 @@ import javax.xml.bind.annotation.XmlType; /** - * <p>Java class for Partition complex type. - * <p/> + * Java class for Partition complex type. + * <p> * <p>The following schema fragment specifies the expected content contained within this class. - * <p/> + * * <pre> - * <complexType name="Partition"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <sequence> - * <choice minOccurs="0"> - * <element name="mapper" type="{http://xmlns.jcp.org/xml/ns/javaee}PartitionMapper"/> - * <element name="plan" type="{http://xmlns.jcp.org/xml/ns/javaee}PartitionPlan"/> - * </choice> - * <element name="collector" type="{http://xmlns.jcp.org/xml/ns/javaee}Collector" minOccurs="0"/> - * <element name="analyzer" type="{http://xmlns.jcp.org/xml/ns/javaee}Analyzer" minOccurs="0"/> - * <element name="reducer" type="{http://xmlns.jcp.org/xml/ns/javaee}PartitionReducer" minOccurs="0"/> - * </sequence> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="Partition"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <choice minOccurs="0"> + * <element name="mapper" type="{http://xmlns.jcp.org/xml/ns/javaee}PartitionMapper"/> + * <element name="plan" type="{http://xmlns.jcp.org/xml/ns/javaee}PartitionPlan"/> + * </choice> + * <element name="collector" type="{http://xmlns.jcp.org/xml/ns/javaee}Collector" minOccurs="0"/> + * <element name="analyzer" type="{http://xmlns.jcp.org/xml/ns/javaee}Analyzer" minOccurs="0"/> + * <element name="reducer" type="{http://xmlns.jcp.org/xml/ns/javaee}PartitionReducer" minOccurs="0"/> + * </sequence> + * </restriction> + * </complexContent> + * </complexType> * </pre> */ @XmlAccessorType(XmlAccessType.FIELD) http://git-wip-us.apache.org/repos/asf/incubator-batchee/blob/ff8bbbd1/jbatch/src/main/java/org/apache/batchee/jaxb/PartitionMapper.java ---------------------------------------------------------------------- diff --git a/jbatch/src/main/java/org/apache/batchee/jaxb/PartitionMapper.java b/jbatch/src/main/java/org/apache/batchee/jaxb/PartitionMapper.java index 74429fc..32af016 100644 --- a/jbatch/src/main/java/org/apache/batchee/jaxb/PartitionMapper.java +++ b/jbatch/src/main/java/org/apache/batchee/jaxb/PartitionMapper.java @@ -15,21 +15,21 @@ import javax.xml.bind.annotation.XmlType; /** - * <p>Java class for PartitionMapper complex type. - * <p/> - * <p>The following schema fragment specifies the expected content contained within this class. - * <p/> + * Java class for PartitionMapper complex type. + * <p> + * The following schema fragment specifies the expected content contained within this class. + * * <pre> - * <complexType name="PartitionMapper"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <sequence> - * <element name="properties" type="{http://xmlns.jcp.org/xml/ns/javaee}Properties" minOccurs="0"/> - * </sequence> - * <attribute name="ref" use="required" type="{http://xmlns.jcp.org/xml/ns/javaee}artifactRef" /> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="PartitionMapper"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="properties" type="{http://xmlns.jcp.org/xml/ns/javaee}Properties" minOccurs="0"/> + * </sequence> + * <attribute name="ref" use="required" type="{http://xmlns.jcp.org/xml/ns/javaee}artifactRef" /> + * </restriction> + * </complexContent> + * </complexType> * </pre> */ @XmlAccessorType(XmlAccessType.FIELD) http://git-wip-us.apache.org/repos/asf/incubator-batchee/blob/ff8bbbd1/jbatch/src/main/java/org/apache/batchee/jaxb/PartitionPlan.java ---------------------------------------------------------------------- diff --git a/jbatch/src/main/java/org/apache/batchee/jaxb/PartitionPlan.java b/jbatch/src/main/java/org/apache/batchee/jaxb/PartitionPlan.java index 3e3f15c..05f90dc 100644 --- a/jbatch/src/main/java/org/apache/batchee/jaxb/PartitionPlan.java +++ b/jbatch/src/main/java/org/apache/batchee/jaxb/PartitionPlan.java @@ -17,22 +17,22 @@ import java.util.List; /** - * <p>Java class for PartitionPlan complex type. - * <p/> - * <p>The following schema fragment specifies the expected content contained within this class. - * <p/> + * Java class for PartitionPlan complex type. + * <p> + * The following schema fragment specifies the expected content contained within this class. + * * <pre> - * <complexType name="PartitionPlan"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <sequence> - * <element name="properties" type="{http://xmlns.jcp.org/xml/ns/javaee}Properties" maxOccurs="unbounded" minOccurs="0"/> - * </sequence> - * <attribute name="partitions" type="{http://www.w3.org/2001/XMLSchema}string" /> - * <attribute name="threads" type="{http://www.w3.org/2001/XMLSchema}string" /> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="PartitionPlan"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="properties" type="{http://xmlns.jcp.org/xml/ns/javaee}Properties" maxOccurs="unbounded" minOccurs="0"/> + * </sequence> + * <attribute name="partitions" type="{http://www.w3.org/2001/XMLSchema}string" /> + * <attribute name="threads" type="{http://www.w3.org/2001/XMLSchema}string" /> + * </restriction> + * </complexContent> + * </complexType> * </pre> */ @XmlAccessorType(XmlAccessType.FIELD) @@ -49,21 +49,17 @@ public class PartitionPlan { /** * Gets the value of the properties property. - * <p/> - * <p/> + * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. - * This is why there is not a <CODE>set</CODE> method for the properties property. - * <p/> - * <p/> + * This is why there is not a {@code set} method for the properties property. + * <p> * For example, to add a new item, do as follows: * <pre> * getProperties().add(newItem); * </pre> - * <p/> - * <p/> - * <p/> + * <p> * Objects of the following type(s) are allowed in the list * {@link JSLProperties } */ http://git-wip-us.apache.org/repos/asf/incubator-batchee/blob/ff8bbbd1/jbatch/src/main/java/org/apache/batchee/jaxb/PartitionReducer.java ---------------------------------------------------------------------- diff --git a/jbatch/src/main/java/org/apache/batchee/jaxb/PartitionReducer.java b/jbatch/src/main/java/org/apache/batchee/jaxb/PartitionReducer.java index 4640146..3c13abe 100644 --- a/jbatch/src/main/java/org/apache/batchee/jaxb/PartitionReducer.java +++ b/jbatch/src/main/java/org/apache/batchee/jaxb/PartitionReducer.java @@ -15,21 +15,21 @@ import javax.xml.bind.annotation.XmlType; /** - * <p>Java class for PartitionReducer complex type. - * <p/> + * Java class for PartitionReducer complex type. + * <p> * <p>The following schema fragment specifies the expected content contained within this class. - * <p/> + * * <pre> - * <complexType name="PartitionReducer"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <sequence> - * <element name="properties" type="{http://xmlns.jcp.org/xml/ns/javaee}Properties" minOccurs="0"/> - * </sequence> - * <attribute name="ref" use="required" type="{http://xmlns.jcp.org/xml/ns/javaee}artifactRef" /> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="PartitionReducer"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="properties" type="{http://xmlns.jcp.org/xml/ns/javaee}Properties" minOccurs="0"/> + * </sequence> + * <attribute name="ref" use="required" type="{http://xmlns.jcp.org/xml/ns/javaee}artifactRef" /> + * </restriction> + * </complexContent> + * </complexType> * </pre> */ @XmlAccessorType(XmlAccessType.FIELD) http://git-wip-us.apache.org/repos/asf/incubator-batchee/blob/ff8bbbd1/jbatch/src/main/java/org/apache/batchee/jaxb/Property.java ---------------------------------------------------------------------- diff --git a/jbatch/src/main/java/org/apache/batchee/jaxb/Property.java b/jbatch/src/main/java/org/apache/batchee/jaxb/Property.java index 8c72797..d92c7f7 100644 --- a/jbatch/src/main/java/org/apache/batchee/jaxb/Property.java +++ b/jbatch/src/main/java/org/apache/batchee/jaxb/Property.java @@ -15,19 +15,19 @@ import javax.xml.bind.annotation.XmlType; /** - * <p>Java class for Property complex type. - * <p/> - * <p>The following schema fragment specifies the expected content contained within this class. - * <p/> + * Java class for Property complex type. + * <p> + * The following schema fragment specifies the expected content contained within this class. + * * <pre> - * <complexType name="Property"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> - * <attribute name="value" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="Property"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> + * <attribute name="value" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> + * </restriction> + * </complexContent> + * </complexType> * </pre> */ @XmlAccessorType(XmlAccessType.FIELD) http://git-wip-us.apache.org/repos/asf/incubator-batchee/blob/ff8bbbd1/jbatch/src/main/java/org/apache/batchee/jaxb/Split.java ---------------------------------------------------------------------- diff --git a/jbatch/src/main/java/org/apache/batchee/jaxb/Split.java b/jbatch/src/main/java/org/apache/batchee/jaxb/Split.java index 14173b0..a393129 100644 --- a/jbatch/src/main/java/org/apache/batchee/jaxb/Split.java +++ b/jbatch/src/main/java/org/apache/batchee/jaxb/Split.java @@ -26,22 +26,22 @@ import java.util.List; /** - * <p>Java class for Split complex type. - * <p/> - * <p>The following schema fragment specifies the expected content contained within this class. - * <p/> + * Java class for Split complex type. + * <p> + * The following schema fragment specifies the expected content contained within this class. + * * <pre> - * <complexType name="Split"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <sequence> - * <element name="flow" type="{http://xmlns.jcp.org/xml/ns/javaee}Flow" maxOccurs="unbounded" minOccurs="0"/> - * </sequence> - * <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}ID" /> - * <attribute name="next" type="{http://www.w3.org/2001/XMLSchema}string" /> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="Split"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="flow" type="{http://xmlns.jcp.org/xml/ns/javaee}Flow" maxOccurs="unbounded" minOccurs="0"/> + * </sequence> + * <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}ID" /> + * <attribute name="next" type="{http://www.w3.org/2001/XMLSchema}string" /> + * </restriction> + * </complexContent> + * </complexType> * </pre> */ @XmlAccessorType(XmlAccessType.FIELD) @@ -62,21 +62,17 @@ public class Split implements ExecutionElement { /** * Gets the value of the flows property. - * <p/> - * <p/> + * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. - * This is why there is not a <CODE>set</CODE> method for the flows property. - * <p/> - * <p/> + * This is why there is not a {@code set} method for the flows property. + * <p> * For example, to add a new item, do as follows: * <pre> * getFlows().add(newItem); * </pre> - * <p/> - * <p/> - * <p/> + * <p> * Objects of the following type(s) are allowed in the list * {@link Flow } */ http://git-wip-us.apache.org/repos/asf/incubator-batchee/blob/ff8bbbd1/jbatch/src/main/java/org/apache/batchee/jaxb/Step.java ---------------------------------------------------------------------- diff --git a/jbatch/src/main/java/org/apache/batchee/jaxb/Step.java b/jbatch/src/main/java/org/apache/batchee/jaxb/Step.java index 2bb9727..ffb78cc 100644 --- a/jbatch/src/main/java/org/apache/batchee/jaxb/Step.java +++ b/jbatch/src/main/java/org/apache/batchee/jaxb/Step.java @@ -26,31 +26,31 @@ import java.util.List; /** - * <p>Java class for Step complex type. - * <p/> - * <p>The following schema fragment specifies the expected content contained within this class. - * <p/> + * Java class for Step complex type. + * <p> + * The following schema fragment specifies the expected content contained within this class. + * * <pre> - * <complexType name="Step"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <sequence> - * <element name="properties" type="{http://xmlns.jcp.org/xml/ns/javaee}Properties" minOccurs="0"/> - * <element name="listeners" type="{http://xmlns.jcp.org/xml/ns/javaee}Listeners" minOccurs="0"/> - * <choice minOccurs="0"> - * <element name="batchlet" type="{http://xmlns.jcp.org/xml/ns/javaee}Batchlet"/> - * <element name="chunk" type="{http://xmlns.jcp.org/xml/ns/javaee}Chunk"/> - * </choice> - * <element name="partition" type="{http://xmlns.jcp.org/xml/ns/javaee}Partition" minOccurs="0"/> - * <group ref="{http://xmlns.jcp.org/xml/ns/javaee}TransitionElements" maxOccurs="unbounded" minOccurs="0"/> - * </sequence> - * <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}ID" /> - * <attribute name="start-limit" type="{http://www.w3.org/2001/XMLSchema}string" /> - * <attribute name="allow-start-if-complete" type="{http://www.w3.org/2001/XMLSchema}string" /> - * <attribute name="next" type="{http://www.w3.org/2001/XMLSchema}string" /> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="Step"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="properties" type="{http://xmlns.jcp.org/xml/ns/javaee}Properties" minOccurs="0"/> + * <element name="listeners" type="{http://xmlns.jcp.org/xml/ns/javaee}Listeners" minOccurs="0"/> + * <choice minOccurs="0"> + * <element name="batchlet" type="{http://xmlns.jcp.org/xml/ns/javaee}Batchlet"/> + * <element name="chunk" type="{http://xmlns.jcp.org/xml/ns/javaee}Chunk"/> + * </choice> + * <element name="partition" type="{http://xmlns.jcp.org/xml/ns/javaee}Partition" minOccurs="0"/> + * <group ref="{http://xmlns.jcp.org/xml/ns/javaee}TransitionElements" maxOccurs="unbounded" minOccurs="0"/> + * </sequence> + * <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}ID" /> + * <attribute name="start-limit" type="{http://www.w3.org/2001/XMLSchema}string" /> + * <attribute name="allow-start-if-complete" type="{http://www.w3.org/2001/XMLSchema}string" /> + * <attribute name="next" type="{http://www.w3.org/2001/XMLSchema}string" /> + * </restriction> + * </complexContent> + * </complexType> * </pre> */ @XmlAccessorType(XmlAccessType.FIELD) @@ -190,21 +190,17 @@ public class Step implements ExecutionElement { /** * Gets the value of the transitionElements property. - * <p/> - * <p/> + * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. - * This is why there is not a <CODE>set</CODE> method for the transitionElements property. - * <p/> - * <p/> + * This is why there is not a {@code set} method for the transitionElements property. + * <p> * For example, to add a new item, do as follows: * <pre> * getTransitionElements().add(newItem); * </pre> - * <p/> - * <p/> - * <p/> + * <p> * Objects of the following type(s) are allowed in the list * {@link Next } * {@link Fail } http://git-wip-us.apache.org/repos/asf/incubator-batchee/blob/ff8bbbd1/jbatch/src/main/java/org/apache/batchee/jaxb/Stop.java ---------------------------------------------------------------------- diff --git a/jbatch/src/main/java/org/apache/batchee/jaxb/Stop.java b/jbatch/src/main/java/org/apache/batchee/jaxb/Stop.java index 23d197a..cb89968 100644 --- a/jbatch/src/main/java/org/apache/batchee/jaxb/Stop.java +++ b/jbatch/src/main/java/org/apache/batchee/jaxb/Stop.java @@ -17,19 +17,19 @@ import javax.xml.bind.annotation.XmlType; /** - * <p>Java class for Stop complex type. - * <p/> - * <p>The following schema fragment specifies the expected content contained within this class. - * <p/> + * Java class for Stop complex type. + * <p> + * The following schema fragment specifies the expected content contained within this class. + * * <pre> - * <complexType name="Stop"> - * <complexContent> - * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> - * <attGroup ref="{http://xmlns.jcp.org/xml/ns/javaee}TerminatingAttributes"/> - * <attribute name="restart" type="{http://www.w3.org/2001/XMLSchema}string" /> - * </restriction> - * </complexContent> - * </complexType> + * <complexType name="Stop"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <attGroup ref="{http://xmlns.jcp.org/xml/ns/javaee}TerminatingAttributes"/> + * <attribute name="restart" type="{http://www.w3.org/2001/XMLSchema}string" /> + * </restriction> + * </complexContent> + * </complexType> * </pre> */ @XmlAccessorType(XmlAccessType.FIELD) http://git-wip-us.apache.org/repos/asf/incubator-batchee/blob/ff8bbbd1/jbatch/src/main/java/org/apache/batchee/spi/PersistenceManagerService.java ---------------------------------------------------------------------- diff --git a/jbatch/src/main/java/org/apache/batchee/spi/PersistenceManagerService.java b/jbatch/src/main/java/org/apache/batchee/spi/PersistenceManagerService.java index 38019b1..6f06979 100755 --- a/jbatch/src/main/java/org/apache/batchee/spi/PersistenceManagerService.java +++ b/jbatch/src/main/java/org/apache/batchee/spi/PersistenceManagerService.java @@ -157,7 +157,7 @@ public interface PersistenceManagerService extends BatchService { /** * Get a StepStatus - * <p/> + * <p> * The parent job instance id and this step name from the job xml * are used to determine if the current step execution have previously run. * http://git-wip-us.apache.org/repos/asf/incubator-batchee/blob/ff8bbbd1/tools/ee6/src/main/java/org/apache/batchee/tools/services/thread/AsyncEjbBatchThreadPoolService.java ---------------------------------------------------------------------- diff --git a/tools/ee6/src/main/java/org/apache/batchee/tools/services/thread/AsyncEjbBatchThreadPoolService.java b/tools/ee6/src/main/java/org/apache/batchee/tools/services/thread/AsyncEjbBatchThreadPoolService.java index 7db5330..f4db719 100644 --- a/tools/ee6/src/main/java/org/apache/batchee/tools/services/thread/AsyncEjbBatchThreadPoolService.java +++ b/tools/ee6/src/main/java/org/apache/batchee/tools/services/thread/AsyncEjbBatchThreadPoolService.java @@ -28,7 +28,7 @@ import org.apache.batchee.spi.BatchThreadPoolService; /** * This is an implementation of a {@link org.apache.batchee.spi.BatchThreadPoolService} - * which uses an &&064;Asynchronous EJB method to spawn new Threads. + * which uses an @Asynchronous EJB method to spawn new Threads. * The main reason for doing this is to have properly setup JavaEE Threads even * in JavaEE 6 environments where BatchEE is not deeply integrated in other ways. * http://git-wip-us.apache.org/repos/asf/incubator-batchee/blob/ff8bbbd1/tools/maven-plugin/src/main/java/org/apache/batchee/tools/maven/BarMojo.java ---------------------------------------------------------------------- diff --git a/tools/maven-plugin/src/main/java/org/apache/batchee/tools/maven/BarMojo.java b/tools/maven-plugin/src/main/java/org/apache/batchee/tools/maven/BarMojo.java index e13fc51..e47c3e4 100644 --- a/tools/maven-plugin/src/main/java/org/apache/batchee/tools/maven/BarMojo.java +++ b/tools/maven-plugin/src/main/java/org/apache/batchee/tools/maven/BarMojo.java @@ -52,14 +52,16 @@ import static java.util.Arrays.asList; /** * create a bar archive using packaging bar and this plugin: - * <packaging>bar</packaging> - * <p/> - * <plugin> - * <groupId>org.apache.batchee</groupId> - * <artifactId>batchee-maven-plugin</artifactId> - * <version>0.1-incubating-SNAPSHOT</version> - * <extensions>true</extensions> - * </plugin> + * <packaging>bar</packaging> + * <p> + * <pre><code> + * <plugin> + * <groupId>org.apache.batchee</groupId> + * <artifactId>batchee-maven-plugin</artifactId> + * <version>0.1-incubating-SNAPSHOT</version> + * <extensions>true</extensions> + * </plugin> + * </code></pre> */ @Mojo(name = "bar", requiresDependencyResolution = ResolutionScope.COMPILE_PLUS_RUNTIME, defaultPhase = LifecyclePhase.PACKAGE) public class BarMojo extends AbstractMojo {
