| java.lang.Object com.sun.midp.midletsuite.InstallInfo
InstallInfo | public class InstallInfo (Code) | | Information about a MIDlet that is to be installed.
|
Constructor Summary | |
public | InstallInfo(int theId) Constructor for InstallInfo to be called when storing a new suite. |
authPath | public String[] authPath(Code) | | Authorization path, staring with the most trusted CA authorizing
the suite, for secure installing.
|
description | public String description(Code) | | Description of the suite.
|
domain | public String domain(Code) | | Security domain of the suite, for secure installing.
|
expectedJarSize | public int expectedJarSize(Code) | | How big the JAD says the JAR is.
|
id | public int id(Code) | | What ID the installed suite is stored by.
|
jarFilename | public String jarFilename(Code) | | Name of the downloaded MIDlet suite jar file.
|
suiteVendor | public String suiteVendor(Code) | | Vendor of the suite.
|
suiteVersion | public String suiteVersion(Code) | | Version of the suite.
|
trusted | public boolean trusted(Code) | | Flag for trusted suites. If true the system trust icon is displayed.
|
verifyHash | public byte[] verifyHash(Code) | | Hash value of the suite with preverified classes
|
InstallInfo | public InstallInfo(int theId)(Code) | | Constructor for InstallInfo to be called when storing a new suite.
|
getAuthPath | public String[] getAuthPath()(Code) | | Gets the authoriztion path of this suite. The path starts with
the most trusted CA that authorized this suite.
array of CA names or null if the suite was not signed |
getCA | public String getCA()(Code) | | Gets the name of CA that authorized this suite.
name of a CA or null if the suite was not signed |
getDownloadUrl | public String getDownloadUrl()(Code) | | Gets the URL that the suite was downloaded from.
URL of the JAD, or JAR for a JAR only suite, never null,even in development environments |
getID | public int getID()(Code) | | Gets the unique ID of the suite.
suite ID |
getJadUrl | public String getJadUrl()(Code) | | Gets the JAD URL of the suite. This is only for the installer.
URL of the JAD can be null |
getJarUrl | public String getJarUrl()(Code) | | Gets the JAR URL of the suite. This is only for the installer.
URL of the JAR, never null, even in development environments |
getSecurityDomain | public String getSecurityDomain()(Code) | | Gets the security domain of this suite.
name of a security domain |
getVerifyHash | final public byte[] getVerifyHash()(Code) | | Gets hash value for the suite with all classes successfully
verified during the suite installation, otherwise null value
will be returned
suite hash value |
isTrusted | public boolean isTrusted()(Code) | | Indicates if this suite is trusted.
(not to be confused with a domain named "trusted",
this is used to determine if a trusted symbol should be displayed
to the user and not used for permissions)
true if the suite is trusted false if not |
load | native void load() throws IOException(Code) | | Populates this InstallInfo instance from persistent store.
throws: IOException - if the information cannot be read |
|
|