| |
|
| java.lang.Object com.sun.jump.module.download.JUMPDownloadDescriptor com.sun.jumpimpl.module.download.BaseDownloadDescriptor com.sun.jumpimpl.module.download.OMADownloadDescriptor
Field Summary | |
protected String | infoURI A URI (URL) used to provide further
information describing the media object. | protected String | nextURI The URI (URL) to which the client should
navigate if the user elects to invoke a browsing
action after the download is done. | protected boolean | userInteraction Whether user interaction is allowed. |
Method Summary | |
public String | getInfoURI() Return the URI from which to request more information
about this media object (may be null). | public boolean | getInteraction() Indicate whether or not user interaction is allowed
for this media object. | public String | getNextURI() Return the nextURI value for this media object
(may be null). | public void | setInfoURI(String uri) Set the infoURI for this media object. | public void | setInteraction(boolean user) Set option of whether or not to allow user interaction. | public void | setNextURI(String uri) Set the nextURI value for this media object, to which the
client should navigate after installation (whether successful
or not) if the user selects a browsing option. |
infoURI | protected String infoURI(Code) | | A URI (URL) used to provide further
information describing the media object.
|
nextURI | protected String nextURI(Code) | | The URI (URL) to which the client should
navigate if the user elects to invoke a browsing
action after the download is done. This allows
the download service to continue user interaction
after the download is complete (whether successful
or not).
|
userInteraction | protected boolean userInteraction(Code) | | Whether user interaction is allowed.
|
getInfoURI | public String getInfoURI()(Code) | | Return the URI from which to request more information
about this media object (may be null).
|
getInteraction | public boolean getInteraction()(Code) | | Indicate whether or not user interaction is allowed
for this media object.
|
getNextURI | public String getNextURI()(Code) | | Return the nextURI value for this media object
(may be null).
|
setInfoURI | public void setInfoURI(String uri) throws SyntaxException(Code) | | Set the infoURI for this media object.
Parameters: uri - The URI (URL) which provides more informationabout the media object. throws: SyntaxException - if the parameter is an invalidURL. |
setInteraction | public void setInteraction(boolean user) throws SyntaxException(Code) | | Set option of whether or not to allow user interaction.
Parameters: user - True or false. |
setNextURI | public void setNextURI(String uri) throws SyntaxException(Code) | | Set the nextURI value for this media object, to which the
client should navigate after installation (whether successful
or not) if the user selects a browsing option.
Parameters: uri - the URI to which to navigate throws: SyntaxException - if the URI is invalid. |
|
|
|