org.apache.tools.ant.taskdefs.optional.ejb
Class DDCreator
public
class
DDCreator
extends MatchingTask
Builds a serialized deployment descriptor given a text file description of the
descriptor in the format supported by WebLogic.
This ant task is a front end for the weblogic DDCreator tool.
Method Summary |
void | execute()
Do the work.
|
void | setClasspath(String s)
Set the classpath to be used for this compilation.
|
void | setDescriptors(String dirName)
Set the directory from where the text descriptions of the deployment descriptors are
to be read.
|
void | setDest(String dirName)
Set the directory into which the serialized deployment descriptors are to
be written.
|
public void execute()
Do the work.
The work is actually done by creating a helper task. This approach allows
the classpath of the helper task to be set. Since the weblogic tools require
the class files of the project's home and remote interfaces to be available in
the classpath, this also avoids having to start ant with the class path of the
project it is building.
Throws: BuildException if something goes wrong with the build
public void setClasspath(String s)
Set the classpath to be used for this compilation.
Parameters: s the classpath to use for the ddcreator tool.
public void setDescriptors(String dirName)
Set the directory from where the text descriptions of the deployment descriptors are
to be read.
Parameters: dirName the name of the directory containing the text deployment descriptor files.
public void setDest(String dirName)
Set the directory into which the serialized deployment descriptors are to
be written.
Parameters: dirName the name of the directory into which the serialised deployment
descriptors are written.