Java Doc for InternalMIDletSuiteImpl.java in  » 6.0-JDK-Modules » j2me » com » sun » midp » installer » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » 6.0 JDK Modules » j2me » com.sun.midp.installer 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


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.




Method Summary
public  voidcheckForPermission(int permission, String resource)
     Check for permission and throw an exception if not allowed.
public  voidcheckForPermission(int permission, String resource, String extraValue)
     Checks for permission and throw an exception if not allowed.
public  voidcheckIfPermissionAllowed(int permission)
     Checks to see the suite has the ALLOW level for specific permission.
public  intcheckPermission(String permission)
     Gets the status of the specified permission.
public  voidclose()
    
public static  MIDletSuitecreate(String theDisplayName, int theId)
     Creates MIDletSuite for rommized MIDlet.
public  intgetID()
     Gets the unique ID of the suite.
public  StringgetMIDletName(String className)
     Get the name of a MIDlet to display to the user.
public  intgetNumberOfMIDlets()
     Provides the number of MIDlets in this suite.
public  byte[]getPermissions()
     Gets list of permissions for this suite.
public  StringgetProperty(String key)
     Gets a property of the suite.
public  bytegetPushInterruptSetting()
     Gets push setting for interrupting other MIDlets.
public  intgetPushOptions()
     Gets push options for this suite.
public  booleanisEnabled()
     Determine if the a MIDlet from this suite can be run.
public  booleanisRegistered(String midletClassName)
     Indicates if the named MIDlet is registered in the suite with MIDlet-<n> record in the manifest or application descriptor.
public  booleanisTrusted()
     Indicates if this suite is trusted.
public  booleanisVerified()
     Get state of classes preverification within the suite.
public  booleanpermissionToInterrupt(String connection)
     Asks the user want to interrupt the current MIDlet with a new MIDlet that has received network data.
public  voidsetTempProperty(SecurityToken token, String key, String value)
     Replace or add a property to the suite for this run only.



Method Detail
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



Methods inherited from java.lang.Object
public boolean equals(Object obj)(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.