Interface IResourceStorage
-
- All Superinterfaces:
com4j.Com4jObject
public interface IResourceStorage extends com4j.Com4jObject
Services to manage resource storage.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
clean()
Remove the resource files from the server repository and the client cache.java.lang.String
downloadResource(java.lang.String resourcePath, boolean synchronize)
Downloads the specified resource to the client.void
uploadResource(java.lang.String resourcePath, boolean synchronize)
Uploads the specified resource to the server.
-
-
-
Method Detail
-
uploadResource
void uploadResource(java.lang.String resourcePath, boolean synchronize)
Uploads the specified resource to the server.
- Parameters:
resourcePath
- Mandatory java.lang.String parameter.synchronize
- Mandatory boolean parameter.
-
downloadResource
java.lang.String downloadResource(java.lang.String resourcePath, boolean synchronize)
Downloads the specified resource to the client.
- Parameters:
resourcePath
- Mandatory java.lang.String parameter.synchronize
- Mandatory boolean parameter.- Returns:
- Returns a value of type java.lang.String
-
clean
void clean()
Remove the resource files from the server repository and the client cache.
-
-