Interface IExtendedStorage
- 
- All Superinterfaces:
- com4j.Com4jObject
 
 public interface IExtendedStorage extends com4j.Com4jObjectRepresents a storage structure used to transfer files between the server and client file system and delete files.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description intactionFinished()Checks if the load or save action is finished.voidcancel()Cancels the load or save action.java.lang.StringclientPath()The location on the client to which to download or from which to upload.voidclientPath(java.lang.String pVal)The location on the client to which to download or from which to upload.voiddelete(java.lang.String fSysFilter, int nDeleteType)Deletes files locally or from the server.voidgetLastError()Gets the last error that occurred during asynchronous load and save operations.java.lang.Stringload(java.lang.String fSysFilter, boolean synchronize)Downloads the storage structure to the client file system.java.lang.StringloadEx(java.lang.String fSysFilter, boolean synchronize, com4j.Holder<IList> pVal, com4j.Holder<java.lang.Boolean> pNonFatalErrorOccured)Downloads the storage structure to the client file system.java.lang.Stringprogress(com4j.Holder<java.lang.Integer> total, com4j.Holder<java.lang.Integer> current)Polls the progress of the last action (Load or Save).com4j.Com4jObjectroot()The storage root.voidsave(java.lang.String fSysFilter, boolean synchronize)Uploads the storage structure to the server.booleansaveEx(java.lang.String fSysFilter, boolean synchronize, com4j.Holder<IList> pVal)Uploads the storage structure to the server.java.lang.StringserverPath()Deprecated.voidserverPath(java.lang.String pVal)Deprecated.
 
- 
- 
- 
Method Detail- 
rootcom4j.Com4jObject root() The storage root. Getter method for the COM property "Root" - Returns:
- Returns a value of type com4j.Com4jObject
 
 - 
loadjava.lang.String load(@DefaultValue("*.*") java.lang.String fSysFilter, @DefaultValue("0") boolean synchronize)Downloads the storage structure to the client file system. - Parameters:
- fSysFilter- Optional parameter. Default value is "*.*"
- synchronize- Optional parameter. Default value is false
- Returns:
- Returns a value of type java.lang.String
 
 - 
savevoid save(@DefaultValue("*.*") java.lang.String fSysFilter, @DefaultValue("0") boolean synchronize)Uploads the storage structure to the server. - Parameters:
- fSysFilter- Optional parameter. Default value is "*.*"
- synchronize- Optional parameter. Default value is false
 
 - 
deletevoid delete(java.lang.String fSysFilter, int nDeleteType)Deletes files locally or from the server. - Parameters:
- fSysFilter- Mandatory java.lang.String parameter.
- nDeleteType- Mandatory int parameter.
 
 - 
serverPathjava.lang.String serverPath() Deprecated. The location on the server from which to download or to which to upload. Getter method for the COM property "ServerPath" - Returns:
- Returns a value of type java.lang.String
 
 - 
serverPathvoid serverPath(java.lang.String pVal) Deprecated. The location on the server from which to download or to which to upload. Setter method for the COM property "ServerPath" - Parameters:
- pVal- Mandatory java.lang.String parameter.
 
 - 
clientPathjava.lang.String clientPath() The location on the client to which to download or from which to upload. Getter method for the COM property "ClientPath" - Returns:
- Returns a value of type java.lang.String
 
 - 
clientPathvoid clientPath(java.lang.String pVal) The location on the client to which to download or from which to upload. Setter method for the COM property "ClientPath" - Parameters:
- pVal- Mandatory java.lang.String parameter.
 
 - 
cancelvoid cancel() Cancels the load or save action. 
 - 
actionFinishedint actionFinished() Checks if the load or save action is finished. Getter method for the COM property "ActionFinished" - Returns:
- Returns a value of type int
 
 - 
progressjava.lang.String progress(com4j.Holder<java.lang.Integer> total, com4j.Holder<java.lang.Integer> current)Polls the progress of the last action (Load or Save). - Parameters:
- total- Mandatory Holder- parameter. 
- current- Mandatory Holder- parameter. 
- Returns:
- Returns a value of type java.lang.String
 
 - 
getLastErrorvoid getLastError() Gets the last error that occurred during asynchronous load and save operations. 
 - 
saveExboolean saveEx(java.lang.String fSysFilter, boolean synchronize, com4j.Holder<IList> pVal)Uploads the storage structure to the server. - Parameters:
- fSysFilter- Mandatory java.lang.String parameter.
- synchronize- Mandatory boolean parameter.
- pVal- Mandatory Holder- parameter. 
- Returns:
- Returns a value of type boolean
 
 - 
loadExjava.lang.String loadEx(java.lang.String fSysFilter, boolean synchronize, com4j.Holder<IList> pVal, com4j.Holder<java.lang.Boolean> pNonFatalErrorOccured)Downloads the storage structure to the client file system. - Parameters:
- fSysFilter- Mandatory java.lang.String parameter.
- synchronize- Mandatory boolean parameter.
- pVal- Mandatory Holder- parameter. 
- pNonFatalErrorOccured- Mandatory Holder- parameter. 
- Returns:
- Returns a value of type java.lang.String
 
 
- 
 
-