Package jetbrains.buildServer.web
Class WebAccess
- java.lang.Object
-
- jetbrains.buildServer.web.WebAccess
-
public class WebAccess extends Object
The helper object representing the access point to the file.- Since:
- 6.0
- Author:
- Maxim Podkolzine (maxim.podkolzine@jetbrains.com)
- See Also:
WebAccessService
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getFullLinkToFile(String relativePath)
String
getFullLinkToZip()
String
getId()
String
getLinkForFile(String relativePath)
String
getLinkForZip()
Pair<String,String>
getRelativeAndInsideZipPaths(String requestPath)
String
getRelativePath(String requestPath)
boolean
isFileRequest(String requestPath)
boolean
isInsideZipRequest(String requestPath)
boolean
isZipRequest(String requestPath)
boolean
matchesRequest(String requestPath)
String
toString()
-
-
-
Method Detail
-
getLinkForZip
@NotNull public String getLinkForZip()
-
getFullLinkToZip
public String getFullLinkToZip()
-
getId
public String getId()
-
matchesRequest
public boolean matchesRequest(@NotNull String requestPath)
-
isFileRequest
public boolean isFileRequest(@NotNull String requestPath)
-
isZipRequest
public boolean isZipRequest(@NotNull String requestPath)
-
isInsideZipRequest
public boolean isInsideZipRequest(@NotNull String requestPath)
-
getRelativeAndInsideZipPaths
public Pair<String,String> getRelativeAndInsideZipPaths(@NotNull String requestPath)
-
-