The Tasklet/Weblet Bundles tool allows you to view the meta data file that is associated with every
Bundle. A soafaces Bundle (Bundle) is a modular component that can be dynamically added
to the JobServer environment. You can read more about soafaces here.
This screen shows the basic information about the Bundle you selected. This information is
found in the META-INF/MANIFEST.MF
file that is part of the Bundle JAR file.
Here is an example MANIFEST.MF
file:
Manifest-Version: 1.0 Ant-Version: Apache Ant 1.7.0 Created-By: 10.0-b19 (Sun Microsystems Inc.) SOAFaces-Name: Hello World 3 SOAFaces-SymbolicName: surda-beansoup-helloworld3 SOAFaces-Version: 1.0.0 SOAFaces-Description: Simple SOAFaces example SOAFaces-Vendor: Grand Logic, Inc SOAFaces-Category: example SOAFaces-Tasklet: org.beansoup.helloworld3.workflow.HelloWorld SOAFaces-InputBean: org.beansoup.helloworld3.client.HelloWorldInput SOAFaces-OutputBean: SOAFaces-Weblet: org.beansoup.helloworld3.client.HelloWorldCustomizer SOAFaces-RuntimeViewer:
Tasklet
interface.
This class defines the server-side logic that will be executed when this Bundle is run
as part of a batch job.Tasklet
and can be edited by a Weblet
customizer.Tasklet
.
The Tasklet
uses the output JavaBean as a way of storing any output it creates and
as a way of passing data to another Tasklet in a job chain.Weblet
EntryPoint.
This Module defines the top level GUI panel that runs the GUI application or Tasklet customzer.
Note that Weblet, RuntimeViewer can share the same Module (with an EntryPoint
for each one specified in the same GWT module file)
or they can each have their own GWT Module.Tasklet
, when that tasklet was run as part of a job.