svn commit: r1077171 [22/32] - in /websites/production/geronimo/content/batchee: ./ apidocs/ apidocs/class-use/ apidocs/org/apache/batchee/beanio/ apidocs/org/apache/batchee/beanio/class-use/ apidocs/org/apache/batchee/camel/ apidocs/org/apache/batchee...
[email protected] Sun, 31 Oct 2021 18:07:53 -0000
| Newsgroups | gmane.comp.java.geronimo.cvs |
|---|---|
| Message-ID | <[email protected]> |
Modified: websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/JBatchResource.html
==============================================================================
--- websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/JBatchResource.html (original)
+++ websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/JBatchResource.html Sun Oct 31 18:07:42 2021
@@ -4,7 +4,7 @@
<head>
<!-- Generated by javadoc -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>JBatchResource (BatchEE 0.7-SNAPSHOT API)</title>
+<title>JBatchResource (BatchEE 1.0.2-SNAPSHOT API)</title>
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
@@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="JBatchResource (BatchEE 0.7-SNAPSHOT API)";
+ parent.document.title="JBatchResource (BatchEE 1.0.2-SNAPSHOT API)";
}
}
catch(err) {
@@ -105,7 +105,10 @@ var activeTableTab = "activeTableTab";
</dl>
<hr>
<br>
-<pre>public interface <span class="typeNameLabel">JBatchResource</span></pre>
+<pre>@Consumes(value="application/json")
+ @Produces(value="application/json")
+ @Path(value="batchee")
+public interface <span class="typeNameLabel">JBatchResource</span></pre>
</li>
</ul>
</div>
@@ -202,7 +205,9 @@ var activeTableTab = "activeTableTab";
<ul class="blockList">
<li class="blockList">
<h4>getJobNames</h4>
-<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] getJobNames()</pre>
+<pre>@GET
+ @Path(value="job-names")
+<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] getJobNames()</pre>
</li>
</ul>
<a name="getJobInstanceCount-java.lang.String-">
@@ -211,7 +216,11 @@ var activeTableTab = "activeTableTab";
<ul class="blockList">
<li class="blockList">
<h4>getJobInstanceCount</h4>
-<pre>int getJobInstanceCount(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> jobName)</pre>
+<pre>@GET
+ @Path(value="job-instance/count/{name}")
+ @Produces(value="text/plain")
+int getJobInstanceCount(@PathParam(value="name")
+ <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> jobName)</pre>
</li>
</ul>
<a name="getJobInstances-java.lang.String-int-int-">
@@ -220,9 +229,14 @@ var activeTableTab = "activeTableTab";
<ul class="blockList">
<li class="blockList">
<h4>getJobInstances</h4>
-<pre><a href="../../../../../org/apache/batchee/jaxrs/common/RestJobInstance.html" title="class in org.apache.batchee.jaxrs.common">RestJobInstance</a>[] getJobInstances(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> jobName,
- int start,
- int count)</pre>
+<pre>@GET
+ @Path(value="job-instances/{name}")
+<a href="../../../../../org/apache/batchee/jaxrs/common/RestJobInstance.html" title="class in org.apache.batchee.jaxrs.common">RestJobInstance</a>[] getJobInstances(@PathParam(value="name")
+ <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> jobName,
+ @QueryParam(value="start")
+ int start,
+ @QueryParam(value="count")
+ int count)</pre>
</li>
</ul>
<a name="getRunningExecutions-java.lang.String-">
@@ -231,7 +245,10 @@ var activeTableTab = "activeTableTab";
<ul class="blockList">
<li class="blockList">
<h4>getRunningExecutions</h4>
-<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Long.html?is-external=true" title="class or interface in java.lang">Long</a>[] getRunningExecutions(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> jobName)</pre>
+<pre>@GET
+ @Path(value="executions/running/{name}")
+<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Long.html?is-external=true" title="class or interface in java.lang">Long</a>[] getRunningExecutions(@PathParam(value="name")
+ <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> jobName)</pre>
</li>
</ul>
<a name="getParameters-long-">
@@ -240,7 +257,10 @@ var activeTableTab = "activeTableTab";
<ul class="blockList">
<li class="blockList">
<h4>getParameters</h4>
-<pre><a href="../../../../../org/apache/batchee/jaxrs/common/RestProperties.html" title="class in org.apache.batchee.jaxrs.common">RestProperties</a> getParameters(long executionId)</pre>
+<pre>@GET
+ @Path(value="execution/parameter/{id}")
+<a href="../../../../../org/apache/batchee/jaxrs/common/RestProperties.html" title="class in org.apache.batchee.jaxrs.common">RestProperties</a> getParameters(@PathParam(value="id")
+ long executionId)</pre>
</li>
</ul>
<a name="getJobInstance-long-">
@@ -249,7 +269,10 @@ var activeTableTab = "activeTableTab";
<ul class="blockList">
<li class="blockList">
<h4>getJobInstance</h4>
-<pre><a href="../../../../../org/apache/batchee/jaxrs/common/RestJobInstance.html" title="class in org.apache.batchee.jaxrs.common">RestJobInstance</a> getJobInstance(long executionId)</pre>
+<pre>@GET
+ @Path(value="job-instance/{id}")
+<a href="../../../../../org/apache/batchee/jaxrs/common/RestJobInstance.html" title="class in org.apache.batchee.jaxrs.common">RestJobInstance</a> getJobInstance(@PathParam(value="id")
+ long executionId)</pre>
</li>
</ul>
<a name="getJobExecutions-long-java.lang.String-">
@@ -258,8 +281,12 @@ var activeTableTab = "activeTableTab";
<ul class="blockList">
<li class="blockList">
<h4>getJobExecutions</h4>
-<pre><a href="../../../../../org/apache/batchee/jaxrs/common/RestJobExecution.html" title="class in org.apache.batchee.jaxrs.common">RestJobExecution</a>[] getJobExecutions(long id,
- <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> name)</pre>
+<pre>@GET
+ @Path(value="job-executions/{id}/{name}")
+<a href="../../../../../org/apache/batchee/jaxrs/common/RestJobExecution.html" title="class in org.apache.batchee.jaxrs.common">RestJobExecution</a>[] getJobExecutions(@PathParam(value="id")
+ long id,
+ @PathParam(value="name")
+ <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> name)</pre>
</li>
</ul>
<a name="getJobExecution-long-">
@@ -268,7 +295,10 @@ var activeTableTab = "activeTableTab";
<ul class="blockList">
<li class="blockList">
<h4>getJobExecution</h4>
-<pre><a href="../../../../../org/apache/batchee/jaxrs/common/RestJobExecution.html" title="class in org.apache.batchee.jaxrs.common">RestJobExecution</a> getJobExecution(long executionId)</pre>
+<pre>@GET
+ @Path(value="job-execution/{id}")
+<a href="../../../../../org/apache/batchee/jaxrs/common/RestJobExecution.html" title="class in org.apache.batchee.jaxrs.common">RestJobExecution</a> getJobExecution(@PathParam(value="id")
+ long executionId)</pre>
</li>
</ul>
<a name="getStepExecutions-long-">
@@ -277,7 +307,10 @@ var activeTableTab = "activeTableTab";
<ul class="blockList">
<li class="blockList">
<h4>getStepExecutions</h4>
-<pre><a href="../../../../../org/apache/batchee/jaxrs/common/RestStepExecution.html" title="class in org.apache.batchee.jaxrs.common">RestStepExecution</a>[] getStepExecutions(long jobExecutionId)</pre>
+<pre>@GET
+ @Path(value="step-executions/{id}")
+<a href="../../../../../org/apache/batchee/jaxrs/common/RestStepExecution.html" title="class in org.apache.batchee.jaxrs.common">RestStepExecution</a>[] getStepExecutions(@PathParam(value="id")
+ long jobExecutionId)</pre>
</li>
</ul>
<a name="start-java.lang.String-org.apache.batchee.jaxrs.common.RestProperties-">
@@ -286,8 +319,12 @@ var activeTableTab = "activeTableTab";
<ul class="blockList">
<li class="blockList">
<h4>start</h4>
-<pre>long start(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> jobXMLName,
- <a href="../../../../../org/apache/batchee/jaxrs/common/RestProperties.html" title="class in org.apache.batchee.jaxrs.common">RestProperties</a> jobParameters)</pre>
+<pre>@POST
+ @Path(value="execution/start/{name}")
+ @Produces(value="text/plain")
+long start(@PathParam(value="name")
+ <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> jobXMLName,
+ <a href="../../../../../org/apache/batchee/jaxrs/common/RestProperties.html" title="class in org.apache.batchee.jaxrs.common">RestProperties</a> jobParameters)</pre>
</li>
</ul>
<a name="restart-long-org.apache.batchee.jaxrs.common.RestProperties-">
@@ -296,8 +333,12 @@ var activeTableTab = "activeTableTab";
<ul class="blockList">
<li class="blockList">
<h4>restart</h4>
-<pre>long restart(long executionId,
- <a href="../../../../../org/apache/batchee/jaxrs/common/RestProperties.html" title="class in org.apache.batchee.jaxrs.common">RestProperties</a> restartParameters)</pre>
+<pre>@POST
+ @Path(value="execution/restart/{id}")
+ @Produces(value="text/plain")
+long restart(@PathParam(value="id")
+ long executionId,
+ <a href="../../../../../org/apache/batchee/jaxrs/common/RestProperties.html" title="class in org.apache.batchee.jaxrs.common">RestProperties</a> restartParameters)</pre>
</li>
</ul>
<a name="stop-long-">
@@ -306,7 +347,10 @@ var activeTableTab = "activeTableTab";
<ul class="blockList">
<li class="blockList">
<h4>stop</h4>
-<pre>void stop(long executionId)</pre>
+<pre>@HEAD
+ @Path(value="execution/stop/{id}")
+void stop(@PathParam(value="id")
+ long executionId)</pre>
</li>
</ul>
<a name="abandon-long-">
@@ -315,7 +359,10 @@ var activeTableTab = "activeTableTab";
<ul class="blockListLast">
<li class="blockList">
<h4>abandon</h4>
-<pre>void abandon(long executionId)</pre>
+<pre>@HEAD
+ @Path(value="execution/abandon/{id}")
+void abandon(@PathParam(value="id")
+ long executionId)</pre>
</li>
</ul>
</li>
@@ -389,4 +436,4 @@ var activeTableTab = "activeTableTab";
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p>
</body>
-</html>
\ No newline at end of file
+</html>
Modified: websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/RestEntry.html
==============================================================================
--- websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/RestEntry.html (original)
+++ websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/RestEntry.html Sun Oct 31 18:07:42 2021
@@ -4,7 +4,7 @@
<head>
<!-- Generated by javadoc -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RestEntry (BatchEE 0.7-SNAPSHOT API)</title>
+<title>RestEntry (BatchEE 1.0.2-SNAPSHOT API)</title>
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
@@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="RestEntry (BatchEE 0.7-SNAPSHOT API)";
+ parent.document.title="RestEntry (BatchEE 1.0.2-SNAPSHOT API)";
}
}
catch(err) {
@@ -308,4 +308,4 @@ extends <a href="https://docs.oracle.com
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p>
</body>
-</html>
\ No newline at end of file
+</html>
Modified: websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/RestJobExecution.html
==============================================================================
--- websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/RestJobExecution.html (original)
+++ websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/RestJobExecution.html Sun Oct 31 18:07:42 2021
@@ -4,7 +4,7 @@
<head>
<!-- Generated by javadoc -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RestJobExecution (BatchEE 0.7-SNAPSHOT API)</title>
+<title>RestJobExecution (BatchEE 1.0.2-SNAPSHOT API)</title>
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
@@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="RestJobExecution (BatchEE 0.7-SNAPSHOT API)";
+ parent.document.title="RestJobExecution (BatchEE 1.0.2-SNAPSHOT API)";
}
}
catch(err) {
@@ -516,4 +516,4 @@ extends <a href="https://docs.oracle.com
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p>
</body>
-</html>
\ No newline at end of file
+</html>
Modified: websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/RestJobInstance.html
==============================================================================
--- websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/RestJobInstance.html (original)
+++ websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/RestJobInstance.html Sun Oct 31 18:07:42 2021
@@ -4,7 +4,7 @@
<head>
<!-- Generated by javadoc -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RestJobInstance (BatchEE 0.7-SNAPSHOT API)</title>
+<title>RestJobInstance (BatchEE 1.0.2-SNAPSHOT API)</title>
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
@@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="RestJobInstance (BatchEE 0.7-SNAPSHOT API)";
+ parent.document.title="RestJobInstance (BatchEE 1.0.2-SNAPSHOT API)";
}
}
catch(err) {
@@ -348,4 +348,4 @@ extends <a href="https://docs.oracle.com
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p>
</body>
-</html>
\ No newline at end of file
+</html>
Modified: websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/RestMetric.html
==============================================================================
--- websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/RestMetric.html (original)
+++ websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/RestMetric.html Sun Oct 31 18:07:42 2021
@@ -4,7 +4,7 @@
<head>
<!-- Generated by javadoc -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RestMetric (BatchEE 0.7-SNAPSHOT API)</title>
+<title>RestMetric (BatchEE 1.0.2-SNAPSHOT API)</title>
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
@@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="RestMetric (BatchEE 0.7-SNAPSHOT API)";
+ parent.document.title="RestMetric (BatchEE 1.0.2-SNAPSHOT API)";
}
}
catch(err) {
@@ -335,4 +335,4 @@ extends <a href="https://docs.oracle.com
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p>
</body>
-</html>
\ No newline at end of file
+</html>
Modified: websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/RestProperties.html
==============================================================================
--- websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/RestProperties.html (original)
+++ websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/RestProperties.html Sun Oct 31 18:07:42 2021
@@ -4,7 +4,7 @@
<head>
<!-- Generated by javadoc -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RestProperties (BatchEE 0.7-SNAPSHOT API)</title>
+<title>RestProperties (BatchEE 1.0.2-SNAPSHOT API)</title>
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
@@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="RestProperties (BatchEE 0.7-SNAPSHOT API)";
+ parent.document.title="RestProperties (BatchEE 1.0.2-SNAPSHOT API)";
}
}
catch(err) {
@@ -321,4 +321,4 @@ extends <a href="https://docs.oracle.com
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p>
</body>
-</html>
\ No newline at end of file
+</html>
Modified: websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/RestStepExecution.html
==============================================================================
--- websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/RestStepExecution.html (original)
+++ websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/RestStepExecution.html Sun Oct 31 18:07:42 2021
@@ -4,7 +4,7 @@
<head>
<!-- Generated by javadoc -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RestStepExecution (BatchEE 0.7-SNAPSHOT API)</title>
+<title>RestStepExecution (BatchEE 1.0.2-SNAPSHOT API)</title>
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
@@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="RestStepExecution (BatchEE 0.7-SNAPSHOT API)";
+ parent.document.title="RestStepExecution (BatchEE 1.0.2-SNAPSHOT API)";
}
}
catch(err) {
@@ -451,4 +451,4 @@ extends <a href="https://docs.oracle.com
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p>
</body>
-</html>
\ No newline at end of file
+</html>
Modified: websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/class-use/JBatchResource.html
==============================================================================
--- websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/class-use/JBatchResource.html (original)
+++ websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/class-use/JBatchResource.html Sun Oct 31 18:07:42 2021
@@ -4,7 +4,7 @@
<head>
<!-- Generated by javadoc -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Uses of Interface org.apache.batchee.jaxrs.common.JBatchResource (BatchEE 0.7-SNAPSHOT API)</title>
+<title>Uses of Interface org.apache.batchee.jaxrs.common.JBatchResource (BatchEE 1.0.2-SNAPSHOT API)</title>
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../../script.js"></script>
</head>
@@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="Uses of Interface org.apache.batchee.jaxrs.common.JBatchResource (BatchEE 0.7-SNAPSHOT API)";
+ parent.document.title="Uses of Interface org.apache.batchee.jaxrs.common.JBatchResource (BatchEE 1.0.2-SNAPSHOT API)";
}
}
catch(err) {
@@ -162,4 +162,4 @@
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p>
</body>
-</html>
\ No newline at end of file
+</html>
Modified: websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/class-use/RestEntry.html
==============================================================================
--- websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/class-use/RestEntry.html (original)
+++ websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/class-use/RestEntry.html Sun Oct 31 18:07:42 2021
@@ -4,7 +4,7 @@
<head>
<!-- Generated by javadoc -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Uses of Class org.apache.batchee.jaxrs.common.RestEntry (BatchEE 0.7-SNAPSHOT API)</title>
+<title>Uses of Class org.apache.batchee.jaxrs.common.RestEntry (BatchEE 1.0.2-SNAPSHOT API)</title>
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../../script.js"></script>
</head>
@@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="Uses of Class org.apache.batchee.jaxrs.common.RestEntry (BatchEE 0.7-SNAPSHOT API)";
+ parent.document.title="Uses of Class org.apache.batchee.jaxrs.common.RestEntry (BatchEE 1.0.2-SNAPSHOT API)";
}
}
catch(err) {
@@ -175,4 +175,4 @@
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p>
</body>
-</html>
\ No newline at end of file
+</html>
Modified: websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/class-use/RestJobExecution.html
==============================================================================
--- websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/class-use/RestJobExecution.html (original)
+++ websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/class-use/RestJobExecution.html Sun Oct 31 18:07:42 2021
@@ -4,7 +4,7 @@
<head>
<!-- Generated by javadoc -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Uses of Class org.apache.batchee.jaxrs.common.RestJobExecution (BatchEE 0.7-SNAPSHOT API)</title>
+<title>Uses of Class org.apache.batchee.jaxrs.common.RestJobExecution (BatchEE 1.0.2-SNAPSHOT API)</title>
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../../script.js"></script>
</head>
@@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="Uses of Class org.apache.batchee.jaxrs.common.RestJobExecution (BatchEE 0.7-SNAPSHOT API)";
+ parent.document.title="Uses of Class org.apache.batchee.jaxrs.common.RestJobExecution (BatchEE 1.0.2-SNAPSHOT API)";
}
}
catch(err) {
@@ -211,4 +211,4 @@
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p>
</body>
-</html>
\ No newline at end of file
+</html>
Modified: websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/class-use/RestJobInstance.html
==============================================================================
--- websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/class-use/RestJobInstance.html (original)
+++ websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/class-use/RestJobInstance.html Sun Oct 31 18:07:42 2021
@@ -4,7 +4,7 @@
<head>
<!-- Generated by javadoc -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Uses of Class org.apache.batchee.jaxrs.common.RestJobInstance (BatchEE 0.7-SNAPSHOT API)</title>
+<title>Uses of Class org.apache.batchee.jaxrs.common.RestJobInstance (BatchEE 1.0.2-SNAPSHOT API)</title>
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../../script.js"></script>
</head>
@@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="Uses of Class org.apache.batchee.jaxrs.common.RestJobInstance (BatchEE 0.7-SNAPSHOT API)";
+ parent.document.title="Uses of Class org.apache.batchee.jaxrs.common.RestJobInstance (BatchEE 1.0.2-SNAPSHOT API)";
}
}
catch(err) {
@@ -213,4 +213,4 @@
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p>
</body>
-</html>
\ No newline at end of file
+</html>
Modified: websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/class-use/RestMetric.html
==============================================================================
--- websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/class-use/RestMetric.html (original)
+++ websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/class-use/RestMetric.html Sun Oct 31 18:07:42 2021
@@ -4,7 +4,7 @@
<head>
<!-- Generated by javadoc -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Uses of Class org.apache.batchee.jaxrs.common.RestMetric (BatchEE 0.7-SNAPSHOT API)</title>
+<title>Uses of Class org.apache.batchee.jaxrs.common.RestMetric (BatchEE 1.0.2-SNAPSHOT API)</title>
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../../script.js"></script>
</head>
@@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="Uses of Class org.apache.batchee.jaxrs.common.RestMetric (BatchEE 0.7-SNAPSHOT API)";
+ parent.document.title="Uses of Class org.apache.batchee.jaxrs.common.RestMetric (BatchEE 1.0.2-SNAPSHOT API)";
}
}
catch(err) {
@@ -188,4 +188,4 @@
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p>
</body>
-</html>
\ No newline at end of file
+</html>
Modified: websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/class-use/RestProperties.html
==============================================================================
--- websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/class-use/RestProperties.html (original)
+++ websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/class-use/RestProperties.html Sun Oct 31 18:07:42 2021
@@ -4,7 +4,7 @@
<head>
<!-- Generated by javadoc -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Uses of Class org.apache.batchee.jaxrs.common.RestProperties (BatchEE 0.7-SNAPSHOT API)</title>
+<title>Uses of Class org.apache.batchee.jaxrs.common.RestProperties (BatchEE 1.0.2-SNAPSHOT API)</title>
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../../script.js"></script>
</head>
@@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="Uses of Class org.apache.batchee.jaxrs.common.RestProperties (BatchEE 0.7-SNAPSHOT API)";
+ parent.document.title="Uses of Class org.apache.batchee.jaxrs.common.RestProperties (BatchEE 1.0.2-SNAPSHOT API)";
}
}
catch(err) {
@@ -242,4 +242,4 @@
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p>
</body>
-</html>
\ No newline at end of file
+</html>
Modified: websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/class-use/RestStepExecution.html
==============================================================================
--- websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/class-use/RestStepExecution.html (original)
+++ websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/class-use/RestStepExecution.html Sun Oct 31 18:07:42 2021
@@ -4,7 +4,7 @@
<head>
<!-- Generated by javadoc -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Uses of Class org.apache.batchee.jaxrs.common.RestStepExecution (BatchEE 0.7-SNAPSHOT API)</title>
+<title>Uses of Class org.apache.batchee.jaxrs.common.RestStepExecution (BatchEE 1.0.2-SNAPSHOT API)</title>
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../../script.js"></script>
</head>
@@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="Uses of Class org.apache.batchee.jaxrs.common.RestStepExecution (BatchEE 0.7-SNAPSHOT API)";
+ parent.document.title="Uses of Class org.apache.batchee.jaxrs.common.RestStepExecution (BatchEE 1.0.2-SNAPSHOT API)";
}
}
catch(err) {
@@ -197,4 +197,4 @@
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p>
</body>
-</html>
\ No newline at end of file
+</html>
Modified: websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/johnzon/JohnzonBatcheeProvider.html
==============================================================================
--- websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/johnzon/JohnzonBatcheeProvider.html (original)
+++ websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/johnzon/JohnzonBatcheeProvider.html Sun Oct 31 18:07:42 2021
@@ -4,7 +4,7 @@
<head>
<!-- Generated by javadoc -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>JohnzonBatcheeProvider (BatchEE 0.7-SNAPSHOT API)</title>
+<title>JohnzonBatcheeProvider (BatchEE 1.0.2-SNAPSHOT API)</title>
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../../script.js"></script>
</head>
@@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="JohnzonBatcheeProvider (BatchEE 0.7-SNAPSHOT API)";
+ parent.document.title="JohnzonBatcheeProvider (BatchEE 1.0.2-SNAPSHOT API)";
}
}
catch(err) {
@@ -71,7 +71,7 @@
<li>Nested | </li>
<li>Field | </li>
<li><a href="#constructor.summary">Constr</a> | </li>
-<li><a href="#methods.inherited.from.class.org.apache.johnzon.jaxrs.DelegateProvider">Method</a></li>
+<li><a href="#methods.inherited.from.class.org.apache.johnzon.jaxrs.JohnzonProvider">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
@@ -118,6 +118,8 @@
<hr>
<br>
<pre>@Provider
+ @Produces(value="application/json")
+ @Consumes(value="application/json")
public class <span class="typeNameLabel">JohnzonBatcheeProvider<T></span>
extends org.apache.johnzon.jaxrs.JohnzonProvider<T></pre>
<div class="block">Johnzon integration provider to keep old date formatting.
@@ -156,6 +158,13 @@ extends org.apache.johnzon.jaxrs.Johnzon
</a>
<h3>Method Summary</h3>
<ul class="blockList">
+<li class="blockList"><a name="methods.inherited.from.class.org.apache.johnzon.jaxrs.JohnzonProvider">
+<!-- -->
+</a>
+<h3>Methods inherited from class org.apache.johnzon.jaxrs.JohnzonProvider</h3>
+<code>shouldThrowNoContentExceptionOnEmptyStreams</code></li>
+</ul>
+<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.org.apache.johnzon.jaxrs.DelegateProvider">
<!-- -->
</a>
@@ -248,7 +257,7 @@ extends org.apache.johnzon.jaxrs.Johnzon
<li>Nested | </li>
<li>Field | </li>
<li><a href="#constructor.summary">Constr</a> | </li>
-<li><a href="#methods.inherited.from.class.org.apache.johnzon.jaxrs.DelegateProvider">Method</a></li>
+<li><a href="#methods.inherited.from.class.org.apache.johnzon.jaxrs.JohnzonProvider">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
@@ -263,4 +272,4 @@ extends org.apache.johnzon.jaxrs.Johnzon
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p>
</body>
-</html>
\ No newline at end of file
+</html>
Modified: websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/johnzon/class-use/JohnzonBatcheeProvider.html
==============================================================================
--- websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/johnzon/class-use/JohnzonBatcheeProvider.html (original)
+++ websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/johnzon/class-use/JohnzonBatcheeProvider.html Sun Oct 31 18:07:42 2021
@@ -4,7 +4,7 @@
<head>
<!-- Generated by javadoc -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Uses of Class org.apache.batchee.jaxrs.common.johnzon.JohnzonBatcheeProvider (BatchEE 0.7-SNAPSHOT API)</title>
+<title>Uses of Class org.apache.batchee.jaxrs.common.johnzon.JohnzonBatcheeProvider (BatchEE 1.0.2-SNAPSHOT API)</title>
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../../../script.js"></script>
</head>
@@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="Uses of Class org.apache.batchee.jaxrs.common.johnzon.JohnzonBatcheeProvider (BatchEE 0.7-SNAPSHOT API)";
+ parent.document.title="Uses of Class org.apache.batchee.jaxrs.common.johnzon.JohnzonBatcheeProvider (BatchEE 1.0.2-SNAPSHOT API)";
}
}
catch(err) {
@@ -122,4 +122,4 @@
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p>
</body>
-</html>
\ No newline at end of file
+</html>
Modified: websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/johnzon/package-frame.html
==============================================================================
--- websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/johnzon/package-frame.html (original)
+++ websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/johnzon/package-frame.html Sun Oct 31 18:07:42 2021
@@ -4,7 +4,7 @@
<head>
<!-- Generated by javadoc -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.batchee.jaxrs.common.johnzon (BatchEE 0.7-SNAPSHOT API)</title>
+<title>org.apache.batchee.jaxrs.common.johnzon (BatchEE 1.0.2-SNAPSHOT API)</title>
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../../script.js"></script>
</head>
@@ -17,4 +17,4 @@
</ul>
</div>
</body>
-</html>
\ No newline at end of file
+</html>
Modified: websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/johnzon/package-summary.html
==============================================================================
--- websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/johnzon/package-summary.html (original)
+++ websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/johnzon/package-summary.html Sun Oct 31 18:07:42 2021
@@ -4,7 +4,7 @@
<head>
<!-- Generated by javadoc -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.batchee.jaxrs.common.johnzon (BatchEE 0.7-SNAPSHOT API)</title>
+<title>org.apache.batchee.jaxrs.common.johnzon (BatchEE 1.0.2-SNAPSHOT API)</title>
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../../script.js"></script>
</head>
@@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="org.apache.batchee.jaxrs.common.johnzon (BatchEE 0.7-SNAPSHOT API)";
+ parent.document.title="org.apache.batchee.jaxrs.common.johnzon (BatchEE 1.0.2-SNAPSHOT API)";
}
}
catch(err) {
@@ -142,4 +142,4 @@
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p>
</body>
-</html>
\ No newline at end of file
+</html>
Modified: websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/johnzon/package-tree.html
==============================================================================
--- websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/johnzon/package-tree.html (original)
+++ websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/johnzon/package-tree.html Sun Oct 31 18:07:42 2021
@@ -4,7 +4,7 @@
<head>
<!-- Generated by javadoc -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.batchee.jaxrs.common.johnzon Class Hierarchy (BatchEE 0.7-SNAPSHOT API)</title>
+<title>org.apache.batchee.jaxrs.common.johnzon Class Hierarchy (BatchEE 1.0.2-SNAPSHOT API)</title>
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../../script.js"></script>
</head>
@@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="org.apache.batchee.jaxrs.common.johnzon Class Hierarchy (BatchEE 0.7-SNAPSHOT API)";
+ parent.document.title="org.apache.batchee.jaxrs.common.johnzon Class Hierarchy (BatchEE 1.0.2-SNAPSHOT API)";
}
}
catch(err) {
@@ -143,4 +143,4 @@
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p>
</body>
-</html>
\ No newline at end of file
+</html>
Modified: websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/johnzon/package-use.html
==============================================================================
--- websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/johnzon/package-use.html (original)
+++ websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/johnzon/package-use.html Sun Oct 31 18:07:42 2021
@@ -4,7 +4,7 @@
<head>
<!-- Generated by javadoc -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Uses of Package org.apache.batchee.jaxrs.common.johnzon (BatchEE 0.7-SNAPSHOT API)</title>
+<title>Uses of Package org.apache.batchee.jaxrs.common.johnzon (BatchEE 1.0.2-SNAPSHOT API)</title>
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../../script.js"></script>
</head>
@@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="Uses of Package org.apache.batchee.jaxrs.common.johnzon (BatchEE 0.7-SNAPSHOT API)";
+ parent.document.title="Uses of Package org.apache.batchee.jaxrs.common.johnzon (BatchEE 1.0.2-SNAPSHOT API)";
}
}
catch(err) {
@@ -122,4 +122,4 @@
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p>
</body>
-</html>
\ No newline at end of file
+</html>
Modified: websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/package-frame.html
==============================================================================
--- websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/package-frame.html (original)
+++ websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/package-frame.html Sun Oct 31 18:07:42 2021
@@ -4,7 +4,7 @@
<head>
<!-- Generated by javadoc -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.batchee.jaxrs.common (BatchEE 0.7-SNAPSHOT API)</title>
+<title>org.apache.batchee.jaxrs.common (BatchEE 1.0.2-SNAPSHOT API)</title>
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
@@ -26,4 +26,4 @@
</ul>
</div>
</body>
-</html>
\ No newline at end of file
+</html>
Modified: websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/package-summary.html
==============================================================================
--- websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/package-summary.html (original)
+++ websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/package-summary.html Sun Oct 31 18:07:42 2021
@@ -4,7 +4,7 @@
<head>
<!-- Generated by javadoc -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.batchee.jaxrs.common (BatchEE 0.7-SNAPSHOT API)</title>
+<title>org.apache.batchee.jaxrs.common (BatchEE 1.0.2-SNAPSHOT API)</title>
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
@@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="org.apache.batchee.jaxrs.common (BatchEE 0.7-SNAPSHOT API)";
+ parent.document.title="org.apache.batchee.jaxrs.common (BatchEE 1.0.2-SNAPSHOT API)";
}
}
catch(err) {
@@ -175,4 +175,4 @@
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p>
</body>
-</html>
\ No newline at end of file
+</html>
Modified: websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/package-tree.html
==============================================================================
--- websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/package-tree.html (original)
+++ websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/package-tree.html Sun Oct 31 18:07:42 2021
@@ -4,7 +4,7 @@
<head>
<!-- Generated by javadoc -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.batchee.jaxrs.common Class Hierarchy (BatchEE 0.7-SNAPSHOT API)</title>
+<title>org.apache.batchee.jaxrs.common Class Hierarchy (BatchEE 1.0.2-SNAPSHOT API)</title>
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
@@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="org.apache.batchee.jaxrs.common Class Hierarchy (BatchEE 0.7-SNAPSHOT API)";
+ parent.document.title="org.apache.batchee.jaxrs.common Class Hierarchy (BatchEE 1.0.2-SNAPSHOT API)";
}
}
catch(err) {
@@ -144,4 +144,4 @@
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p>
</body>
-</html>
\ No newline at end of file
+</html>
Modified: websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/package-use.html
==============================================================================
--- websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/package-use.html (original)
+++ websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/common/package-use.html Sun Oct 31 18:07:42 2021
@@ -4,7 +4,7 @@
<head>
<!-- Generated by javadoc -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Uses of Package org.apache.batchee.jaxrs.common (BatchEE 0.7-SNAPSHOT API)</title>
+<title>Uses of Package org.apache.batchee.jaxrs.common (BatchEE 1.0.2-SNAPSHOT API)</title>
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
@@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="Uses of Package org.apache.batchee.jaxrs.common (BatchEE 0.7-SNAPSHOT API)";
+ parent.document.title="Uses of Package org.apache.batchee.jaxrs.common (BatchEE 1.0.2-SNAPSHOT API)";
}
}
catch(err) {
@@ -201,4 +201,4 @@
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p>
</body>
-</html>
\ No newline at end of file
+</html>
Modified: websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/server/JBatchApplication.html
==============================================================================
--- websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/server/JBatchApplication.html (original)
+++ websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/server/JBatchApplication.html Sun Oct 31 18:07:42 2021
@@ -4,7 +4,7 @@
<head>
<!-- Generated by javadoc -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>JBatchApplication (BatchEE 0.7-SNAPSHOT API)</title>
+<title>JBatchApplication (BatchEE 1.0.2-SNAPSHOT API)</title>
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
@@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="JBatchApplication (BatchEE 0.7-SNAPSHOT API)";
+ parent.document.title="JBatchApplication (BatchEE 1.0.2-SNAPSHOT API)";
}
}
catch(err) {
@@ -114,7 +114,8 @@ var activeTableTab = "activeTableTab";
<li class="blockList">
<hr>
<br>
-<pre>public class <span class="typeNameLabel">JBatchApplication</span>
+<pre>@ApplicationPath(value="jbatch")
+public class <span class="typeNameLabel">JBatchApplication</span>
extends javax.ws.rs.core.Application</pre>
</li>
</ul>
@@ -161,7 +162,7 @@ extends javax.ws.rs.core.Application</pr
<!-- -->
</a>
<h3>Methods inherited from class javax.ws.rs.core.Application</h3>
-<code>getSingletons</code></li>
+<code>getProperties, getSingletons</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
@@ -285,4 +286,4 @@ extends javax.ws.rs.core.Application</pr
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p>
</body>
-</html>
\ No newline at end of file
+</html>
Modified: websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/server/JBatchExceptionMapper.html
==============================================================================
--- websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/server/JBatchExceptionMapper.html (original)
+++ websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/server/JBatchExceptionMapper.html Sun Oct 31 18:07:42 2021
@@ -4,7 +4,7 @@
<head>
<!-- Generated by javadoc -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>JBatchExceptionMapper (BatchEE 0.7-SNAPSHOT API)</title>
+<title>JBatchExceptionMapper (BatchEE 1.0.2-SNAPSHOT API)</title>
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
@@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="JBatchExceptionMapper (BatchEE 0.7-SNAPSHOT API)";
+ parent.document.title="JBatchExceptionMapper (BatchEE 1.0.2-SNAPSHOT API)";
}
}
catch(err) {
@@ -278,4 +278,4 @@ implements javax.ws.rs.ext.ExceptionMapp
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p>
</body>
-</html>
\ No newline at end of file
+</html>
Modified: websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/server/JBatchResourceImpl.html
==============================================================================
--- websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/server/JBatchResourceImpl.html (original)
+++ websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/server/JBatchResourceImpl.html Sun Oct 31 18:07:42 2021
@@ -4,7 +4,7 @@
<head>
<!-- Generated by javadoc -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>JBatchResourceImpl (BatchEE 0.7-SNAPSHOT API)</title>
+<title>JBatchResourceImpl (BatchEE 1.0.2-SNAPSHOT API)</title>
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
@@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="JBatchResourceImpl (BatchEE 0.7-SNAPSHOT API)";
+ parent.document.title="JBatchResourceImpl (BatchEE 1.0.2-SNAPSHOT API)";
}
}
catch(err) {
@@ -113,7 +113,10 @@ var activeTableTab = "activeTableTab";
</dl>
<hr>
<br>
-<pre>public class <span class="typeNameLabel">JBatchResourceImpl</span>
+<pre>@Consumes(value="application/json")
+ @Produces(value="application/json")
+ @Path(value="batchee")
+public class <span class="typeNameLabel">JBatchResourceImpl</span>
extends <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>
implements <a href="../../../../../org/apache/batchee/jaxrs/common/JBatchResource.html" title="interface in org.apache.batchee.jaxrs.common">JBatchResource</a></pre>
</li>
@@ -267,7 +270,9 @@ public void findOperator()</pr
<ul class="blockList">
<li class="blockList">
<h4>getJobNames</h4>
-<pre>public <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] getJobNames()</pre>
+<pre>@GET
+ @Path(value="job-names")
+public <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] getJobNames()</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../../org/apache/batchee/jaxrs/common/JBatchResource.html#getJobNames--">getJobNames</a></code> in interface <code><a href="../../../../../org/apache/batchee/jaxrs/common/JBatchResource.html" title="interface in org.apache.batchee.jaxrs.common">JBatchResource</a></code></dd>
@@ -280,7 +285,11 @@ public void findOperator()</pr
<ul class="blockList">
<li class="blockList">
<h4>getJobInstanceCount</h4>
-<pre>public int getJobInstanceCount(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> jobName)</pre>
+<pre>@GET
+ @Path(value="job-instance/count/{name}")
+ @Produces(value="text/plain")
+public int getJobInstanceCount(@PathParam(value="name")
+ <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> jobName)</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../../org/apache/batchee/jaxrs/common/JBatchResource.html#getJobInstanceCount-java.lang.String-">getJobInstanceCount</a></code> in interface <code><a href="../../../../../org/apache/batchee/jaxrs/common/JBatchResource.html" title="interface in org.apache.batchee.jaxrs.common">JBatchResource</a></code></dd>
@@ -293,9 +302,14 @@ public void findOperator()</pr
<ul class="blockList">
<li class="blockList">
<h4>getJobInstances</h4>
-<pre>public <a href="../../../../../org/apache/batchee/jaxrs/common/RestJobInstance.html" title="class in org.apache.batchee.jaxrs.common">RestJobInstance</a>[] getJobInstances(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> jobName,
- int start,
- int count)</pre>
+<pre>@GET
+ @Path(value="job-instances/{name}")
+public <a href="../../../../../org/apache/batchee/jaxrs/common/RestJobInstance.html" title="class in org.apache.batchee.jaxrs.common">RestJobInstance</a>[] getJobInstances(@PathParam(value="name")
+ <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> jobName,
+ @QueryParam(value="start")
+ int start,
+ @QueryParam(value="count")
+ int count)</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../../org/apache/batchee/jaxrs/common/JBatchResource.html#getJobInstances-java.lang.String-int-int-">getJobInstances</a></code> in interface <code><a href="../../../../../org/apache/batchee/jaxrs/common/JBatchResource.html" title="interface in org.apache.batchee.jaxrs.common">JBatchResource</a></code></dd>
@@ -308,7 +322,10 @@ public void findOperator()</pr
<ul class="blockList">
<li class="blockList">
<h4>getRunningExecutions</h4>
-<pre>public <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Long.html?is-external=true" title="class or interface in java.lang">Long</a>[] getRunningExecutions(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> jobName)</pre>
+<pre>@GET
+ @Path(value="executions/running/{name}")
+public <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Long.html?is-external=true" title="class or interface in java.lang">Long</a>[] getRunningExecutions(@PathParam(value="name")
+ <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> jobName)</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../../org/apache/batchee/jaxrs/common/JBatchResource.html#getRunningExecutions-java.lang.String-">getRunningExecutions</a></code> in interface <code><a href="../../../../../org/apache/batchee/jaxrs/common/JBatchResource.html" title="interface in org.apache.batchee.jaxrs.common">JBatchResource</a></code></dd>
@@ -321,7 +338,10 @@ public void findOperator()</pr
<ul class="blockList">
<li class="blockList">
<h4>getParameters</h4>
-<pre>public <a href="../../../../../org/apache/batchee/jaxrs/common/RestProperties.html" title="class in org.apache.batchee.jaxrs.common">RestProperties</a> getParameters(long executionId)</pre>
+<pre>@GET
+ @Path(value="execution/parameter/{id}")
+public <a href="../../../../../org/apache/batchee/jaxrs/common/RestProperties.html" title="class in org.apache.batchee.jaxrs.common">RestProperties</a> getParameters(@PathParam(value="id")
+ long executionId)</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../../org/apache/batchee/jaxrs/common/JBatchResource.html#getParameters-long-">getParameters</a></code> in interface <code><a href="../../../../../org/apache/batchee/jaxrs/common/JBatchResource.html" title="interface in org.apache.batchee.jaxrs.common">JBatchResource</a></code></dd>
@@ -334,7 +354,10 @@ public void findOperator()</pr
<ul class="blockList">
<li class="blockList">
<h4>getJobInstance</h4>
-<pre>public <a href="../../../../../org/apache/batchee/jaxrs/common/RestJobInstance.html" title="class in org.apache.batchee.jaxrs.common">RestJobInstance</a> getJobInstance(long executionId)</pre>
+<pre>@GET
+ @Path(value="job-instance/{id}")
+public <a href="../../../../../org/apache/batchee/jaxrs/common/RestJobInstance.html" title="class in org.apache.batchee.jaxrs.common">RestJobInstance</a> getJobInstance(@PathParam(value="id")
+ long executionId)</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../../org/apache/batchee/jaxrs/common/JBatchResource.html#getJobInstance-long-">getJobInstance</a></code> in interface <code><a href="../../../../../org/apache/batchee/jaxrs/common/JBatchResource.html" title="interface in org.apache.batchee.jaxrs.common">JBatchResource</a></code></dd>
@@ -347,8 +370,12 @@ public void findOperator()</pr
<ul class="blockList">
<li class="blockList">
<h4>getJobExecutions</h4>
-<pre>public <a href="../../../../../org/apache/batchee/jaxrs/common/RestJobExecution.html" title="class in org.apache.batchee.jaxrs.common">RestJobExecution</a>[] getJobExecutions(long id,
- <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> name)</pre>
+<pre>@GET
+ @Path(value="job-executions/{id}/{name}")
+public <a href="../../../../../org/apache/batchee/jaxrs/common/RestJobExecution.html" title="class in org.apache.batchee.jaxrs.common">RestJobExecution</a>[] getJobExecutions(@PathParam(value="id")
+ long id,
+ @PathParam(value="name")
+ <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> name)</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../../org/apache/batchee/jaxrs/common/JBatchResource.html#getJobExecutions-long-java.lang.String-">getJobExecutions</a></code> in interface <code><a href="../../../../../org/apache/batchee/jaxrs/common/JBatchResource.html" title="interface in org.apache.batchee.jaxrs.common">JBatchResource</a></code></dd>
@@ -361,7 +388,10 @@ public void findOperator()</pr
<ul class="blockList">
<li class="blockList">
<h4>getJobExecution</h4>
-<pre>public <a href="../../../../../org/apache/batchee/jaxrs/common/RestJobExecution.html" title="class in org.apache.batchee.jaxrs.common">RestJobExecution</a> getJobExecution(long executionId)</pre>
+<pre>@GET
+ @Path(value="job-execution/{id}")
+public <a href="../../../../../org/apache/batchee/jaxrs/common/RestJobExecution.html" title="class in org.apache.batchee.jaxrs.common">RestJobExecution</a> getJobExecution(@PathParam(value="id")
+ long executionId)</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../../org/apache/batchee/jaxrs/common/JBatchResource.html#getJobExecution-long-">getJobExecution</a></code> in interface <code><a href="../../../../../org/apache/batchee/jaxrs/common/JBatchResource.html" title="interface in org.apache.batchee.jaxrs.common">JBatchResource</a></code></dd>
@@ -374,7 +404,10 @@ public void findOperator()</pr
<ul class="blockList">
<li class="blockList">
<h4>getStepExecutions</h4>
-<pre>public <a href="../../../../../org/apache/batchee/jaxrs/common/RestStepExecution.html" title="class in org.apache.batchee.jaxrs.common">RestStepExecution</a>[] getStepExecutions(long jobExecutionId)</pre>
+<pre>@GET
+ @Path(value="step-executions/{id}")
+public <a href="../../../../../org/apache/batchee/jaxrs/common/RestStepExecution.html" title="class in org.apache.batchee.jaxrs.common">RestStepExecution</a>[] getStepExecutions(@PathParam(value="id")
+ long jobExecutionId)</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../../org/apache/batchee/jaxrs/common/JBatchResource.html#getStepExecutions-long-">getStepExecutions</a></code> in interface <code><a href="../../../../../org/apache/batchee/jaxrs/common/JBatchResource.html" title="interface in org.apache.batchee.jaxrs.common">JBatchResource</a></code></dd>
@@ -387,8 +420,12 @@ public void findOperator()</pr
<ul class="blockList">
<li class="blockList">
<h4>start</h4>
-<pre>public long start(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> jobXMLName,
- <a href="../../../../../org/apache/batchee/jaxrs/common/RestProperties.html" title="class in org.apache.batchee.jaxrs.common">RestProperties</a> jobParameters)</pre>
+<pre>@POST
+ @Path(value="execution/start/{name}")
+ @Produces(value="text/plain")
+public long start(@PathParam(value="name")
+ <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> jobXMLName,
+ <a href="../../../../../org/apache/batchee/jaxrs/common/RestProperties.html" title="class in org.apache.batchee.jaxrs.common">RestProperties</a> jobParameters)</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../../org/apache/batchee/jaxrs/common/JBatchResource.html#start-java.lang.String-org.apache.batchee.jaxrs.common.RestProperties-">start</a></code> in interface <code><a href="../../../../../org/apache/batchee/jaxrs/common/JBatchResource.html" title="interface in org.apache.batchee.jaxrs.common">JBatchResource</a></code></dd>
@@ -401,8 +438,12 @@ public void findOperator()</pr
<ul class="blockList">
<li class="blockList">
<h4>restart</h4>
-<pre>public long restart(long executionId,
- <a href="../../../../../org/apache/batchee/jaxrs/common/RestProperties.html" title="class in org.apache.batchee.jaxrs.common">RestProperties</a> restartParameters)</pre>
+<pre>@POST
+ @Path(value="execution/restart/{id}")
+ @Produces(value="text/plain")
+public long restart(@PathParam(value="id")
+ long executionId,
+ <a href="../../../../../org/apache/batchee/jaxrs/common/RestProperties.html" title="class in org.apache.batchee.jaxrs.common">RestProperties</a> restartParameters)</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../../org/apache/batchee/jaxrs/common/JBatchResource.html#restart-long-org.apache.batchee.jaxrs.common.RestProperties-">restart</a></code> in interface <code><a href="../../../../../org/apache/batchee/jaxrs/common/JBatchResource.html" title="interface in org.apache.batchee.jaxrs.common">JBatchResource</a></code></dd>
@@ -415,7 +456,10 @@ public void findOperator()</pr
<ul class="blockList">
<li class="blockList">
<h4>stop</h4>
-<pre>public void stop(long executionId)</pre>
+<pre>@HEAD
+ @Path(value="execution/stop/{id}")
+public void stop(@PathParam(value="id")
+ long executionId)</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../../org/apache/batchee/jaxrs/common/JBatchResource.html#stop-long-">stop</a></code> in interface <code><a href="../../../../../org/apache/batchee/jaxrs/common/JBatchResource.html" title="interface in org.apache.batchee.jaxrs.common">JBatchResource</a></code></dd>
@@ -428,7 +472,10 @@ public void findOperator()</pr
<ul class="blockListLast">
<li class="blockList">
<h4>abandon</h4>
-<pre>public void abandon(long executionId)</pre>
+<pre>@HEAD
+ @Path(value="execution/abandon/{id}")
+public void abandon(@PathParam(value="id")
+ long executionId)</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../../org/apache/batchee/jaxrs/common/JBatchResource.html#abandon-long-">abandon</a></code> in interface <code><a href="../../../../../org/apache/batchee/jaxrs/common/JBatchResource.html" title="interface in org.apache.batchee.jaxrs.common">JBatchResource</a></code></dd>
@@ -506,4 +553,4 @@ public void findOperator()</pr
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p>
</body>
-</html>
\ No newline at end of file
+</html>
Modified: websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/server/class-use/JBatchApplication.html
==============================================================================
--- websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/server/class-use/JBatchApplication.html (original)
+++ websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/server/class-use/JBatchApplication.html Sun Oct 31 18:07:42 2021
@@ -4,7 +4,7 @@
<head>
<!-- Generated by javadoc -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Uses of Class org.apache.batchee.jaxrs.server.JBatchApplication (BatchEE 0.7-SNAPSHOT API)</title>
+<title>Uses of Class org.apache.batchee.jaxrs.server.JBatchApplication (BatchEE 1.0.2-SNAPSHOT API)</title>
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../../script.js"></script>
</head>
@@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="Uses of Class org.apache.batchee.jaxrs.server.JBatchApplication (BatchEE 0.7-SNAPSHOT API)";
+ parent.document.title="Uses of Class org.apache.batchee.jaxrs.server.JBatchApplication (BatchEE 1.0.2-SNAPSHOT API)";
}
}
catch(err) {
@@ -122,4 +122,4 @@
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p>
</body>
-</html>
\ No newline at end of file
+</html>
Modified: websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/server/class-use/JBatchExceptionMapper.html
==============================================================================
--- websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/server/class-use/JBatchExceptionMapper.html (original)
+++ websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/server/class-use/JBatchExceptionMapper.html Sun Oct 31 18:07:42 2021
@@ -4,7 +4,7 @@
<head>
<!-- Generated by javadoc -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Uses of Class org.apache.batchee.jaxrs.server.JBatchExceptionMapper (BatchEE 0.7-SNAPSHOT API)</title>
+<title>Uses of Class org.apache.batchee.jaxrs.server.JBatchExceptionMapper (BatchEE 1.0.2-SNAPSHOT API)</title>
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../../script.js"></script>
</head>
@@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="Uses of Class org.apache.batchee.jaxrs.server.JBatchExceptionMapper (BatchEE 0.7-SNAPSHOT API)";
+ parent.document.title="Uses of Class org.apache.batchee.jaxrs.server.JBatchExceptionMapper (BatchEE 1.0.2-SNAPSHOT API)";
}
}
catch(err) {
@@ -122,4 +122,4 @@
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p>
</body>
-</html>
\ No newline at end of file
+</html>
Modified: websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/server/class-use/JBatchResourceImpl.html
==============================================================================
--- websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/server/class-use/JBatchResourceImpl.html (original)
+++ websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/server/class-use/JBatchResourceImpl.html Sun Oct 31 18:07:42 2021
@@ -4,7 +4,7 @@
<head>
<!-- Generated by javadoc -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Uses of Class org.apache.batchee.jaxrs.server.JBatchResourceImpl (BatchEE 0.7-SNAPSHOT API)</title>
+<title>Uses of Class org.apache.batchee.jaxrs.server.JBatchResourceImpl (BatchEE 1.0.2-SNAPSHOT API)</title>
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../../script.js"></script>
</head>
@@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="Uses of Class org.apache.batchee.jaxrs.server.JBatchResourceImpl (BatchEE 0.7-SNAPSHOT API)";
+ parent.document.title="Uses of Class org.apache.batchee.jaxrs.server.JBatchResourceImpl (BatchEE 1.0.2-SNAPSHOT API)";
}
}
catch(err) {
@@ -122,4 +122,4 @@
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p>
</body>
-</html>
\ No newline at end of file
+</html>
Modified: websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/server/package-frame.html
==============================================================================
--- websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/server/package-frame.html (original)
+++ websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/server/package-frame.html Sun Oct 31 18:07:42 2021
@@ -4,7 +4,7 @@
<head>
<!-- Generated by javadoc -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.batchee.jaxrs.server (BatchEE 0.7-SNAPSHOT API)</title>
+<title>org.apache.batchee.jaxrs.server (BatchEE 1.0.2-SNAPSHOT API)</title>
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
@@ -19,4 +19,4 @@
</ul>
</div>
</body>
-</html>
\ No newline at end of file
+</html>
Modified: websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/server/package-summary.html
==============================================================================
--- websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/server/package-summary.html (original)
+++ websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/server/package-summary.html Sun Oct 31 18:07:42 2021
@@ -4,7 +4,7 @@
<head>
<!-- Generated by javadoc -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.batchee.jaxrs.server (BatchEE 0.7-SNAPSHOT API)</title>
+<title>org.apache.batchee.jaxrs.server (BatchEE 1.0.2-SNAPSHOT API)</title>
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
@@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="org.apache.batchee.jaxrs.server (BatchEE 0.7-SNAPSHOT API)";
+ parent.document.title="org.apache.batchee.jaxrs.server (BatchEE 1.0.2-SNAPSHOT API)";
}
}
catch(err) {
@@ -148,4 +148,4 @@
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p>
</body>
-</html>
\ No newline at end of file
+</html>
Modified: websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/server/package-tree.html
==============================================================================
--- websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/server/package-tree.html (original)
+++ websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/server/package-tree.html Sun Oct 31 18:07:42 2021
@@ -4,7 +4,7 @@
<head>
<!-- Generated by javadoc -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.batchee.jaxrs.server Class Hierarchy (BatchEE 0.7-SNAPSHOT API)</title>
+<title>org.apache.batchee.jaxrs.server Class Hierarchy (BatchEE 1.0.2-SNAPSHOT API)</title>
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
@@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="org.apache.batchee.jaxrs.server Class Hierarchy (BatchEE 0.7-SNAPSHOT API)";
+ parent.document.title="org.apache.batchee.jaxrs.server Class Hierarchy (BatchEE 1.0.2-SNAPSHOT API)";
}
}
catch(err) {
@@ -86,7 +86,7 @@
<li type="circle">org.apache.batchee.jaxrs.server.<a href="../../../../../org/apache/batchee/jaxrs/server/JBatchApplication.html" title="class in org.apache.batchee.jaxrs.server"><span class="typeNameLink">JBatchApplication</span></a></li>
</ul>
</li>
-<li type="circle">org.apache.batchee.jaxrs.server.<a href="../../../../../org/apache/batchee/jaxrs/server/JBatchExceptionMapper.html" title="class in org.apache.batchee.jaxrs.server"><span class="typeNameLink">JBatchExceptionMapper</span></a> (implements javax.ws.rs.ext.ExceptionMapper<T>)</li>
+<li type="circle">org.apache.batchee.jaxrs.server.<a href="../../../../../org/apache/batchee/jaxrs/server/JBatchExceptionMapper.html" title="class in org.apache.batchee.jaxrs.server"><span class="typeNameLink">JBatchExceptionMapper</span></a> (implements javax.ws.rs.ext.ExceptionMapper<E>)</li>
<li type="circle">org.apache.batchee.jaxrs.server.<a href="../../../../../org/apache/batchee/jaxrs/server/JBatchResourceImpl.html" title="class in org.apache.batchee.jaxrs.server"><span class="typeNameLink">JBatchResourceImpl</span></a> (implements org.apache.batchee.jaxrs.common.<a href="../../../../../org/apache/batchee/jaxrs/common/JBatchResource.html" title="interface in org.apache.batchee.jaxrs.common">JBatchResource</a>)</li>
</ul>
</li>
@@ -141,4 +141,4 @@
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p>
</body>
-</html>
\ No newline at end of file
+</html>
Modified: websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/server/package-use.html
==============================================================================
--- websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/server/package-use.html (original)
+++ websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jaxrs/server/package-use.html Sun Oct 31 18:07:42 2021
@@ -4,7 +4,7 @@
<head>
<!-- Generated by javadoc -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Uses of Package org.apache.batchee.jaxrs.server (BatchEE 0.7-SNAPSHOT API)</title>
+<title>Uses of Package org.apache.batchee.jaxrs.server (BatchEE 1.0.2-SNAPSHOT API)</title>
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
@@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="Uses of Package org.apache.batchee.jaxrs.server (BatchEE 0.7-SNAPSHOT API)";
+ parent.document.title="Uses of Package org.apache.batchee.jaxrs.server (BatchEE 1.0.2-SNAPSHOT API)";
}
}
catch(err) {
@@ -122,4 +122,4 @@
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p>
</body>
-</html>
\ No newline at end of file
+</html>
Modified: websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jmx/BatchEE.html
==============================================================================
--- websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jmx/BatchEE.html (original)
+++ websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jmx/BatchEE.html Sun Oct 31 18:07:42 2021
@@ -4,7 +4,7 @@
<head>
<!-- Generated by javadoc -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>BatchEE (BatchEE 0.7-SNAPSHOT API)</title>
+<title>BatchEE (BatchEE 1.0.2-SNAPSHOT API)</title>
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="BatchEE (BatchEE 0.7-SNAPSHOT API)";
+ parent.document.title="BatchEE (BatchEE 1.0.2-SNAPSHOT API)";
}
}
catch(err) {
@@ -507,4 +507,4 @@ implements <a href="../../../../org/apac
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p>
</body>
-</html>
\ No newline at end of file
+</html>
Modified: websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jmx/BatchEEMBean.html
==============================================================================
--- websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jmx/BatchEEMBean.html (original)
+++ websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jmx/BatchEEMBean.html Sun Oct 31 18:07:42 2021
@@ -4,7 +4,7 @@
<head>
<!-- Generated by javadoc -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>BatchEEMBean (BatchEE 0.7-SNAPSHOT API)</title>
+<title>BatchEEMBean (BatchEE 1.0.2-SNAPSHOT API)</title>
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="BatchEEMBean (BatchEE 0.7-SNAPSHOT API)";
+ parent.document.title="BatchEEMBean (BatchEE 1.0.2-SNAPSHOT API)";
}
}
catch(err) {
@@ -429,4 +429,4 @@ var activeTableTab = "activeTableTab";
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p>
</body>
-</html>
\ No newline at end of file
+</html>
Modified: websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jmx/BatchEEMBeanImpl.html
==============================================================================
--- websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jmx/BatchEEMBeanImpl.html (original)
+++ websites/production/geronimo/content/batchee/apidocs/org/apache/batchee/jmx/BatchEEMBeanImpl.html Sun Oct 31 18:07:42 2021
@@ -4,7 +4,7 @@
<head>
<!-- Generated by javadoc -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>BatchEEMBeanImpl (BatchEE 0.7-SNAPSHOT API)</title>
+<title>BatchEEMBeanImpl (BatchEE 1.0.2-SNAPSHOT API)</title>
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@@ -12,7 +12,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="BatchEEMBeanImpl (BatchEE 0.7-SNAPSHOT API)";
+ parent.document.title="BatchEEMBeanImpl (BatchEE 1.0.2-SNAPSHOT API)";
}
}
catch(err) {
@@ -535,4 +535,4 @@ implements <a href="../../../../org/apac
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p>
</body>
-</html>
\ No newline at end of file
+</html>