Interface IFileRequestData
-
- All Known Implementing Classes:
FileRequestData
public interface IFileRequestData
Interface for file request data
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
getCalcHash()
getCalcHashDeviceType
getDeviceType()
getDeviceTypeString
getFileTargetName()
getFileTargetNameString
getLocalPath()
getLocalPathString
getTargetPath()
getTargetPathvoid
setCalcHash(boolean calcHash)
setCalcHashvoid
setDeviceType(DeviceType deviceType)
setDeviceTypevoid
setFileTargetName(String fileTargetName)
setFileTargetNamevoid
setLocalPath(String localPath)
setLocalPathvoid
setTargetPath(String targetPath)
setTargetPath
-
-
-
Method Detail
-
getLocalPath
String getLocalPath()
getLocalPath- Returns:
- localPath
-
setLocalPath
void setLocalPath(String localPath)
setLocalPath- Parameters:
localPath
-
-
getFileTargetName
String getFileTargetName()
getFileTargetName- Returns:
- file target name
-
setFileTargetName
void setFileTargetName(String fileTargetName)
setFileTargetName- Parameters:
fileTargetName
-
-
getTargetPath
String getTargetPath()
getTargetPath- Returns:
- targetPath
-
setTargetPath
void setTargetPath(String targetPath)
setTargetPath- Parameters:
targetPath
-
-
getDeviceType
DeviceType getDeviceType()
getDeviceType- Returns:
- deviceType
-
setDeviceType
void setDeviceType(DeviceType deviceType)
setDeviceType- Parameters:
deviceType
-
-
getCalcHash
boolean getCalcHash()
getCalcHash- Returns:
- calcHash
-
setCalcHash
void setCalcHash(boolean calcHash)
setCalcHash- Parameters:
calcHash
-
-
-