org.apache.tools.ant.taskdefs.optional.ejb
Class DDCreator
java.lang.Object
|
+--org.apache.tools.ant.Task
|
+--org.apache.tools.ant.taskdefs.MatchingTask
|
+--org.apache.tools.ant.taskdefs.optional.ejb.DDCreator
- public class DDCreator
- extends MatchingTask
Build a serialised 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.
- Author:
- Conor MacNeill, Cortex ebusiness Pty Limited
Method Summary |
void |
execute()
Do the work. |
void |
setClasspath(java.lang.String s)
Set the classpath to be used for this compilation. |
void |
setDescriptors(java.lang.String dirName)
Set the directory from where the text descriptions of the deployment descriptors are
to be read. |
void |
setDest(java.lang.String dirName)
Set the directory into which the serialised deployment descriptors are to
be written. |
Methods inherited from class org.apache.tools.ant.taskdefs.MatchingTask |
createExclude, createInclude, createPatternSet, getDirectoryScanner, setDefaultexcludes, setExcludes, setExcludesfile, setIncludes, setIncludesfile, XsetIgnore, XsetItems |
Methods inherited from class org.apache.tools.ant.Task |
getDescription, getLocation, getOwningTarget, getProject, getRuntimeConfigurableWrapper, getTaskName, init, log, log, maybeConfigure, setDescription, setLocation, setOwningTarget, setRuntimeConfigurableWrapper, setTaskName |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
DDCreator
public DDCreator()
execute
public void execute()
throws BuildException
- 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.
- Overrides:
execute
in class Task
- Throws:
BuildException
- if someting goes wrong with the build
setDescriptors
public void setDescriptors(java.lang.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.
setDest
public void setDest(java.lang.String dirName)
- Set the directory into which the serialised deployment descriptors are to
be written.
- Parameters:
dirName
- the name of the directory into which the serialised deployment
descriptors are written.
setClasspath
public void setClasspath(java.lang.String s)
- Set the classpath to be used for this compilation.
- Parameters:
s
- the classpath to use for the ddcreator tool.
Copyright ? 2000 Apache Software Foundation. All Rights Reserved.