org.apache.tools.ant.taskdefs
Class MakeUrl
- Cloneable
This task takes file and turns them into a URL, which it then assigns
to a property. Use when for setting up RMI codebases.
nested filesets are supported; if present, these are turned into the
url with the given separator between them (default = " ").
void | addFileSet(FileSet fileset) - a fileset of jar files to include in the URL, each
separated by the separator
|
void | addPath(Path path) - add a path to the URL.
|
void | execute() - Create the url
|
void | setFile(File file) - the name of a file to be converted into a URL
|
void | setProperty(String property) - set the name of a property to fill with the URL
|
void | setSeparator(String separator) - set the separator for the multi-url option.
|
void | setValidate(boolean validate) - set this flag to trigger validation that every named file exists.
|
bindToOwner , execute , getOwningTarget , getRuntimeConfigurableWrapper , getTaskName , getTaskType , getWrapper , handleErrorFlush , handleErrorOutput , handleFlush , handleInput , handleOutput , init , isInvalid , log , log , log , log , maybeConfigure , perform , reconfigure , setOwningTarget , setRuntimeConfigurableWrapper , setTaskName , setTaskType |
ERROR_MISSING_FILE
public static final String ERROR_MISSING_FILE
Missing file
ERROR_NO_FILES
public static final String ERROR_NO_FILES
No files defined
ERROR_NO_PROPERTY
public static final String ERROR_NO_PROPERTY
No property defined
addFileSet
public void addFileSet(FileSet fileset)
a fileset of jar files to include in the URL, each
separated by the separator
fileset
- the fileset to be added.
addPath
public void addPath(Path path)
add a path to the URL. All elements in the path
will be converted to individual URL entries
setFile
public void setFile(File file)
the name of a file to be converted into a URL
file
- the file to be converted.
setProperty
public void setProperty(String property)
set the name of a property to fill with the URL
property
- the name of the property.
setSeparator
public void setSeparator(String separator)
set the separator for the multi-url option.
separator
- the separator to use.
setValidate
public void setValidate(boolean validate)
set this flag to trigger validation that every named file exists.
Optional: default=true
validate
- a boolean
value.