Package org.apache.catalina.ha.deploy
Class WarWatcher.WarInfo
- java.lang.Object
-
- org.apache.catalina.ha.deploy.WarWatcher.WarInfo
-
- Enclosing class:
- WarWatcher
protected static class WarWatcher.WarInfo extends Object
File information on existing WAR files
-
-
Field Summary
Fields Modifier and Type Field Description protected long
lastChecked
protected long
lastState
protected File
war
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
check()
Returns 1 if the file has been added/modified, 0 if the file is unchanged and -1 if the file has been removedboolean
equals(Object other)
boolean
exists()
File
getWar()
int
hashCode()
boolean
modified()
protected void
setLastState(int lastState)
-
-
-
Field Detail
-
war
protected final File war
-
lastChecked
protected long lastChecked
-
lastState
protected long lastState
-
-
Constructor Detail
-
WarInfo
public WarInfo(File war)
-
-
Method Detail
-
modified
public boolean modified()
-
exists
public boolean exists()
-
check
public int check()
Returns 1 if the file has been added/modified, 0 if the file is unchanged and -1 if the file has been removed- Returns:
- int 1=file added; 0=unchanged; -1=file removed
-
getWar
public File getWar()
-
setLastState
protected void setLastState(int lastState)
-
-