public interface IResourceLoadingArgs
Interface for external resource loading arguments.
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getOriginalUri()
Original URI of the resource as specified in imported presentation.
|
java.lang.String |
getUri()
URI of the resource which is used for downloading if
IResourceLoadingCallback.resourceLoading(IResourceLoadingArgs)
returns ResourceLoadingAction.Default . |
void |
setData(byte[] data)
Sets user provided data of the resource which used if
IResourceLoadingCallback.resourceLoading(IResourceLoadingArgs)
returns ResourceLoadingAction.UserProvided . |
void |
setUri(java.lang.String value)
URI of the resource which is used for downloading if
IResourceLoadingCallback.resourceLoading(IResourceLoadingArgs)
returns ResourceLoadingAction.Default . |
java.lang.String getOriginalUri()
Original URI of the resource as specified in imported presentation.
java.lang.String getUri()
URI of the resource which is used for downloading if IResourceLoadingCallback.resourceLoading(IResourceLoadingArgs)
returns ResourceLoadingAction.Default
.
Initially it's set to original URI of the resource, but can be redefined to any value.
void setUri(java.lang.String value)
URI of the resource which is used for downloading if IResourceLoadingCallback.resourceLoading(IResourceLoadingArgs)
returns ResourceLoadingAction.Default
.
Initially it's set to original URI of the resource, but can be redefined to any value.
void setData(byte[] data)
Sets user provided data of the resource which used if IResourceLoadingCallback.resourceLoading(IResourceLoadingArgs)
returns ResourceLoadingAction.UserProvided
.