Package org.jenkinsci.plugins.deployment
Class HostRecord
- java.lang.Object
-
- org.jenkinsci.plugins.deployment.HostRecord
-
public class HostRecord extends Object
Record of the deployment per host.- Author:
- Kohsuke Kawaguchi
-
-
Constructor Summary
Constructors Constructor Description HostRecord(long timestamp, String host, String env, String path, String replaces)HostRecord(String host, String env, String path, String replaces)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)StringgetEnv()StringgetHost()StringgetPath()StringgetReplaces()FingerprintgetReplacesFingerprint()longgetTimestamp()StringgetTimestampString()Gets the string that says how long since this build has scheduled.inthashCode()
-
-
-
Method Detail
-
getHost
public String getHost()
-
getEnv
public String getEnv()
-
getTimestamp
public long getTimestamp()
-
getPath
public String getPath()
-
getReplaces
public String getReplaces()
-
getReplacesFingerprint
public Fingerprint getReplacesFingerprint() throws IOException
- Throws:
IOException
-
getTimestampString
public String getTimestampString()
Gets the string that says how long since this build has scheduled.- Returns:
- string like "3 minutes" "1 day" etc.
-
-