Package jetbrains.buildServer.xstream
Class JdbcDriverFile
- java.lang.Object
-
- jetbrains.buildServer.xstream.JdbcDriverFile
-
@ThreadSafe public final class JdbcDriverFile extends Object
Descriptor of an individual file (generally, a JDBC driver may consist of multiple files).
- Since:
- 2018.1
- Author:
- Andrey Shcheglov <mailto:andrey.shcheglov@jetbrains.com>
-
-
Constructor Summary
Constructors Constructor Description JdbcDriverFile()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetMd5()Returns the MD5 digest of the file if one is known, andnullor an empty string otherwise.StringgetName()Returns the basename of the file (without the path).StringgetUrl()Returns the remote URL the file to be downloaded from.StringtoString()
-
-
-
Method Detail
-
getName
@Nullable public String getName()
Returns the basename of the file (without the path).
- Returns:
- the basename of the file (without the path).
-
getUrl
@Nullable public String getUrl()
Returns the remote URL the file to be downloaded from.
- Returns:
- the remote URL the file to be downloaded from.
-
getMd5
@Nullable public String getMd5()
Returns the MD5 digest of the file if one is known, and
nullor an empty string otherwise.- Returns:
- the MD5 digest of the file if one is known.
-
toString
@NotNull public String toString()
- Overrides:
toStringin classObject- See Also:
Object.toString()
-
-