| java.lang.Object com.sun.midp.installer.InternalMIDletSuiteImpl
InternalMIDletSuiteImpl | public class InternalMIDletSuiteImpl implements MIDletSuite(Code) | | Implements a the required MIDletSuite functionality needed by the
system. The class is only needed for internal romized midlets.
|
checkForPermission | public void checkForPermission(int permission, String resource) throws InterruptedException(Code) | | Check for permission and throw an exception if not allowed.
May block to ask the user a question.
Parameters: permission - ID of the permission to check for,the ID must be fromcom.sun.midp.security.Permissions Parameters: resource - string to insert into the question, can be null ifno %2 in the question exception: SecurityException - if the permission is notallowed by this token exception: InterruptedException - if another thread interrupts thecalling thread while this method is waiting to preempt thedisplay. |
checkForPermission | public void checkForPermission(int permission, String resource, String extraValue) throws InterruptedException(Code) | | Checks for permission and throw an exception if not allowed.
May block to ask the user a question.
Parameters: permission - ID of the permission to check for,the ID must be fromcom.sun.midp.security.Permissions Parameters: resource - string to insert into the question, can be null ifno %2 in the question Parameters: extraValue - string to insert into the question,can be null if no %3 in the question exception: SecurityException - if the permission is notallowed by this token exception: InterruptedException - if another thread interrupts thecalling thread while this method is waiting to preempt thedisplay. |
checkIfPermissionAllowed | public void checkIfPermissionAllowed(int permission)(Code) | | Checks to see the suite has the ALLOW level for specific permission.
This is used for by internal APIs that only provide access to
trusted system applications.
Parameters: permission - permission ID from com.sun.midp.security.Permissions exception: SecurityException - if the suite is not allowed the permission |
checkPermission | public int checkPermission(String permission)(Code) | | Gets the status of the specified permission.
If no API on the device defines the specific permission
requested then it must be reported as denied.
If the status of the permission is not known because it might
require a user interaction then it should be reported as unknown.
Parameters: permission - to check if denied, allowed, or unknown 0 if the permission is denied; 1 if the permission is allowed;-1 if the status is unknown |
close | public void close()(Code) | | Close the opened MIDletSuite
|
create | public static MIDletSuite create(String theDisplayName, int theId)(Code) | | Creates MIDletSuite for rommized MIDlet.
Parameters: theDisplayName - display name to use in permission dialogs,and in the MIDlet proxy list Parameters: theId - ID to separate this suite's resources from others new MIDletSuite object |
getID | public int getID()(Code) | | Gets the unique ID of the suite.
suite ID |
getMIDletName | public String getMIDletName(String className)(Code) | | Get the name of a MIDlet to display to the user.
Parameters: className - class name of the MIDlet to be checked name to display to the user |
getNumberOfMIDlets | public int getNumberOfMIDlets()(Code) | | Provides the number of MIDlets in this suite.
number of MIDlet in the suite |
getPermissions | public byte[] getPermissions()(Code) | | Gets list of permissions for this suite.
array of permissions from Permissions |
getProperty | public String getProperty(String key)(Code) | | Gets a property of the suite. A property is an attribute from
either the application descriptor or JAR Manifest.
Parameters: key - the name of the property A string with the value of the property.null is returned if no value is available forthe key. |
getPushInterruptSetting | public byte getPushInterruptSetting()(Code) | | Gets push setting for interrupting other MIDlets.
Reuses the Permissions.
push setting for interrupting MIDlets the valuewill be permission level from Permissions |
getPushOptions | public int getPushOptions()(Code) | | Gets push options for this suite.
push options are defined in PushRegistryImpl |
isEnabled | public boolean isEnabled()(Code) | | Determine if the a MIDlet from this suite can be run. Note that
disable suites can still have their settings changed and their
install info displayed.
true if suite is enabled, false otherwise |
isRegistered | public boolean isRegistered(String midletClassName)(Code) | | Indicates if the named MIDlet is registered in the suite
with MIDlet-<n> record in the manifest or
application descriptor.
Parameters: midletClassName - class name of the MIDlet to be checked true if the MIDlet is registered |
isTrusted | public boolean isTrusted()(Code) | | Indicates if this suite is trusted.
(not to be confused with a domain named "trusted",
this is used for extra checks beyond permission checking)
true if the suite is trusted false if not |
isVerified | public boolean isVerified()(Code) | | Get state of classes preverification within the suite.
true because internal suite should be always preverified. |
permissionToInterrupt | public boolean permissionToInterrupt(String connection)(Code) | | Asks the user want to interrupt the current MIDlet with
a new MIDlet that has received network data.
Parameters: connection - connection to place in the permission question ornull for alarm true if the use wants interrupt the current MIDlet, else false |
setTempProperty | public void setTempProperty(SecurityToken token, String key, String value)(Code) | | Replace or add a property to the suite for this run only.
Parameters: token - token with the AMS permission set to allowed,can be null to use the suite's permission Parameters: key - the name of the property Parameters: value - the value of the property exception: SecurityException - if the caller's token does not haveinternal AMS permission |
|
|