|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.oddjob.io.ExistsJob
public class ExistsJob
<oddjob id="this"> <job> <exists file="${this.args[0]}/test/io/reference/test1.txt"/> </job> </oddjob>
<oddjob id="this" xmlns:scheduling="http://rgordon.co.uk/oddjob/scheduling" xmlns:schedules="http://rgordon.co.uk/oddjob/schedules"> <job> <sequential name="The Classic File Polling Example"> <jobs> <scheduling:retry limits="${timer.current}"> <schedule> <schedules:interval interval="00:00:02"/> </schedule> <job> <sequential id="echo-when-file"> <jobs> <exists id="check" name="Check File Exists" file="${work.dir}/done.flag"/> <echo>Found ${check.exists[0]}</echo> </jobs> </sequential> </job> </scheduling:retry> </jobs> </sequential> </job> </oddjob>
<oddjob id="this"> <job> <sequential name="Find Files"> <jobs> <exists id="exists" file="${this.args[0]}/test/io/reference/test*.txt"/> <foreach id="found"> <values> <value value="${exists.exists}"/> </values> <configuration> <xml> <foreach id="found"> <job> <echo>found ${found.current}</echo> </job> </foreach> </xml> </configuration> </foreach> </jobs> </sequential> </job> </oddjob>
Constructor Summary | |
---|---|
ExistsJob()
|
Method Summary | |
---|---|
File[] |
getExists()
|
File |
getFile()
Get the file. |
Date |
getLastModified()
|
String |
getName()
Get the name. |
int |
getResult()
Get the result. |
long |
getSize()
|
void |
run()
|
void |
setFile(File file)
Set the file. |
void |
setName(String name)
Set the name |
String |
toString()
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public ExistsJob()
Method Detail |
---|
public String getName()
public void setName(String name)
name
- The name.public File getFile()
public void setFile(File file)
The
- file.public File[] getExists()
public int getResult()
public void run()
run
in interface Runnable
public long getSize()
Property: size
Description: If a single file is found, this is the size of the file in bytes, or -1 if a single file hasn't been found.
Required: R/O.
public Date getLastModified()
Property: lastModified
Description: If a single file is found, this is the last modified date of the file.
Required: R/O.
public String toString()
toString
in class Object
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |