public interface SuiteManager
ManagerFactory.| Modifier and Type | Method and Description |
|---|---|
void |
addSuiteListener(SuiteListener theListener)
Adds a
SuiteListener. |
Suite |
getSuite(java.lang.String vendor,
java.lang.String name)
Returns the instance of the installed
Suite. |
SuiteInstaller |
getSuiteInstaller(byte[] instData,
int offset,
int length,
boolean ignoreUpdateLock)
Returns
SuiteInstaller. |
SuiteInstaller |
getSuiteInstaller(java.lang.String locationUrl,
boolean ignoreUpdateLock)
Returns
SuiteInstaller. |
java.util.List<Suite> |
getSuites(SuiteType type)
Requests a list of installed suites of specified type.
|
void |
removeSuite(Suite suite,
boolean ignoreRemoveLock)
Removes a
Suite. |
void |
removeSuiteListener(SuiteListener theListener)
Removes a
SuiteListener. |
SuiteInstaller getSuiteInstaller(java.lang.String locationUrl, boolean ignoreUpdateLock) throws java.lang.SecurityException, java.lang.IllegalArgumentException
SuiteInstaller.
To be able to retreive the application installer, caller application should
request javax.microedition.swm.SWMPermission("client",
"installation") or javax.microedition.swm.SWMPermission
("crossClient", "installation") permission (see
SWMPermission for details).
The function can result in network access for the application descriptor acquiring.
The resulting SuiteInstaller can be used for both, the
installation of an application suite being new to the device (in this case
the parameter ignoreUpdateLock, see below, is without meaning),
or the update of an application suite that had already been installed
on the device before.
locationUrl - URL indicating the network location where
the jad/jar files can be retrieved fromignoreUpdateLock - if true the application suite
components will be updated even if lock for update is set.
This option should be used with caution and programmers should always
set this parameter to false.SuiteInstallerjava.lang.SecurityException - if the caller application does not have the required
javax.microedition.swm.SWMPermission permissionjava.lang.IllegalArgumentException - if the locationUrl is not a valid URL,
or the server is not reachableSuiteInstaller getSuiteInstaller(byte[] instData, int offset, int length, boolean ignoreUpdateLock) throws java.lang.SecurityException, java.lang.IllegalArgumentException
SuiteInstaller.
To be able to retreive the application installer, caller application should
request javax.microedition.swm.SWMPermission("client",
"installation") or javax.microedition.swm.SWMPermission
("crossClient", "installation") permission (see
SWMPermission for details).
A SuiteInstaller can be used to install the application from an in-memory buffer, where the raw jar file bytes have been brought to before.
The resulting SuiteInstaller can be used for both, the
installation of an application suite being new to the device (in this case
the parameter ignoreUpdateLock, see below, is without meaning),
or the update of an application suite that had already been installed
on the device before.
instData - in-memory buffer where the installation data (raw jar
bytes) can be retrieved fromoffset - offset within the in-memory buffer the installation
data will be retrieved fromlength - length of the installation data to be retrieved from
the in-memory bufferignoreUpdateLock - if true the application suite
components will be updated even if lock for update is set.
This option should be used with caution and programmers should always
set this parameter to false.SuiteInstallerjava.lang.SecurityException - if the caller application does not have the required
javax.microedition.swm.SWMPermission permissionjava.lang.IllegalArgumentException - if the byte array is empty, the offset
or offset+length exceeds the boundaries of the
byte arraySuite getSuite(java.lang.String vendor, java.lang.String name)
Suite.vendor - vendor name of the requested suitename - the name of the suiteSuite instance of the application
or null if no application was foundjava.util.List<Suite> getSuites(SuiteType type)
type - must be one of:
SuiteType.APPLICATION or SuiteType.LIBRARYSuite instances that may be emptyjava.lang.IllegalArgumentException - if type is not SuiteType.APPLICATION
or SuiteType.LIBRARYvoid addSuiteListener(SuiteListener theListener)
SuiteListener. Several listeners can be added, all get
notified about state changes of suites.theListener - SuiteListener to be addedvoid removeSuiteListener(SuiteListener theListener)
SuiteListener.theListener - SuiteListener to be removedvoid removeSuite(Suite suite, boolean ignoreRemoveLock) throws SuiteLockedException, java.lang.IllegalStateException
Suite. This is a synchronous method.
If it is processed normally (without throwing an exception), it
MUST be guaranteed that the specified Suite is removed
afterwards.
In case the removal of the suite has been successful, calling
isInstalled() for this Suite
returns false.
If the suite uses resources being used by other components, those MUST be guaranteed to remain available. Resources MUST NOT be released until they are not in use anymore.
Before a suite can be removed, all applications belonging to this suite MUST be stopped. In particular, an application is not able to remove its own suite using this API.
suite - the suite to be removedignoreRemoveLock - if true suite is removed
even if it has state flag SuiteStateFlag.REMOVE_DENIEDSuiteLockedException - is thrown, if suite is locked
and the ignoreRemoveLock parameter is set to
false.
In some implementation specific cases this exception MAY be also
thrown if the ignoreRemoveLock parameter is set to
true.
For details about when suite is called locked
, see SuiteLockedException.java.lang.IllegalStateException - if the suite has already been
removed or if an application of this suite is still running. This
does also apply if an application tries to remove its own suite.Copyright (c) 2014, Oracle and/or its affiliates. All Rights Reserved. Use of this specification is subject to license terms.