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 String
getMd5()
Returns the MD5 digest of the file if one is known, andnull
or an empty string otherwise.String
getName()
Returns the basename of the file (without the path).String
getUrl()
Returns the remote URL the file to be downloaded from.String
toString()
-
-
-
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
null
or an empty string otherwise.- Returns:
- the MD5 digest of the file if one is known.
-
toString
@NotNull public String toString()
- Overrides:
toString
in classObject
- See Also:
Object.toString()
-
-