Package org.syncany.plugins.transfer.to
Class ActionTO
- java.lang.Object
-
- org.syncany.plugins.transfer.to.ActionTO
-
public class ActionTO extends java.lang.Object
A TransactionActionTO describes a single action on a file, which is to be bundled with other actions to describe a full transaction.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ActionTO.ActionStatus
static class
ActionTO.ActionType
-
Constructor Summary
Constructors Constructor Description ActionTO()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.io.File
getLocalTempLocation()
RemoteFile
getRemoteFile()
ActionTO.ActionStatus
getStatus()
TempRemoteFile
getTempRemoteFile()
ActionTO.ActionType
getType()
void
setLocalTempLocation(java.io.File file)
void
setRemoteLocation(RemoteFile remoteFile)
void
setRemoteTempLocation(TempRemoteFile tempRemoteFile)
void
setStatus(ActionTO.ActionStatus status)
void
setType(ActionTO.ActionType type)
java.lang.String
toString()
-
-
-
Constructor Detail
-
ActionTO
public ActionTO()
-
-
Method Detail
-
getType
public ActionTO.ActionType getType()
-
setType
public void setType(ActionTO.ActionType type)
-
getStatus
public ActionTO.ActionStatus getStatus()
-
setStatus
public void setStatus(ActionTO.ActionStatus status)
-
setRemoteLocation
public void setRemoteLocation(RemoteFile remoteFile)
-
getRemoteFile
public RemoteFile getRemoteFile() throws StorageException
- Throws:
StorageException
-
setRemoteTempLocation
public void setRemoteTempLocation(TempRemoteFile tempRemoteFile)
-
getTempRemoteFile
public TempRemoteFile getTempRemoteFile()
-
setLocalTempLocation
public void setLocalTempLocation(java.io.File file)
-
getLocalTempLocation
public java.io.File getLocalTempLocation()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-