Package org.eclipse.jgit.lfs.server
Class LfsProtocolServlet.LfsRequest
- java.lang.Object
-
- org.eclipse.jgit.lfs.server.LfsProtocolServlet.LfsRequest
-
- Enclosing class:
- LfsProtocolServlet
protected static class LfsProtocolServlet.LfsRequest extends java.lang.Object
LFS request.- Since:
- 4.5
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
LfsRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<LfsObject>
getObjects()
Get the LFS objects.java.lang.String
getOperation()
Get the LFS operation.boolean
isDownload()
boolean
isUpload()
boolean
isVerify()
-
-
-
Field Detail
-
operation
private java.lang.String operation
-
objects
private java.util.List<LfsObject> objects
-
-
Method Detail
-
getOperation
public java.lang.String getOperation()
Get the LFS operation.- Returns:
- the operation
-
getObjects
public java.util.List<LfsObject> getObjects()
Get the LFS objects.- Returns:
- the objects
-
isUpload
public boolean isUpload()
- Returns:
- true if the operation is upload.
- Since:
- 4.7
-
isDownload
public boolean isDownload()
- Returns:
- true if the operation is download.
- Since:
- 4.7
-
isVerify
public boolean isVerify()
- Returns:
- true if the operation is verify.
- Since:
- 4.7
-
-