| com.sun.midp.jump.installer.JUMPInstallerInterface
All known Subclasses: com.sun.midp.jump.installer.JUMPFileInstaller,
JUMPInstallerInterface | public interface JUMPInstallerInterface (Code) | | |
verifyAndStoreSuite | int verifyAndStoreSuite(String jadSourceUrl, String encoding, String tempJadFileName, String tempJarFileName, boolean isUpdate) throws IOException, SecurityException, InvalidJadException, MIDletSuiteLockedException(Code) | | Verifies and installs an MIDlet suite based on a jad.
It is expected that the .jad and .jar files are already downloaded from
the server to the local filesystem by the time this method is invoked.
Parameters: jadSourceUrl - the original server location of the jad that got downloaded. Parameters: encoding - Character encoding of the jad. Parameters: tempJadFileName - The location of the jad file in the local filesystem Parameters: tempJarFileName - The location of the jar file in the local filesystem Parameters: isUpdate - true if this is an update, false if this is a fresh install. the installed midlet suite ID. |
verifyAndStoreSuite | int verifyAndStoreSuite(String jarSourceUrl, String tempJarFileName, String suiteName, boolean isUpdate) throws IOException, SecurityException, InvalidJadException, MIDletSuiteLockedException(Code) | | Verifies and installs an MIDlet suite based on a jar.
It is expected that the .jar file are already downloaded from
the server to the local filesystem by the time this method is invoked.
Parameters: jarSourceUrl - the original server location of the jar that got downloaded. Parameters: tempJarFileName - The location of the jar file in the local filesystem Parameters: suiteName - The name of the midlet suite to install. Parameters: isUpdate - true if this is an update, false if this is a fresh install. the installed midlet suite ID. |
|
|