Fields Summary |
---|
public int | idWhat ID the installed suite is stored by. |
public String | jadUrlURL of the JAD. |
public String | jarUrlURL of the JAR. |
public String | jarFilenameName of the downloaded MIDlet suite jar file. |
public int | expectedJarSizeHow big the JAD says the JAR is. |
public String | suiteNameName of the suite. |
public String | suiteVendorVendor of the suite. |
public String | suiteVersionVersion of the suite. |
public String | descriptionDescription of the suite. |
public String[] | authPathAuthorization path, staring with the most trusted CA authorizing
the suite, for secure installing. |
public String | domainSecurity domain of the suite, for secure installing. |
public boolean | trustedFlag for trusted suites. If true the system trust icon is displayed. |
public byte[] | verifyHashHash value of the suite with preverified classes |
Methods Summary |
---|
public java.lang.String[] | getAuthPath()Gets the authoriztion path of this suite. The path starts with
the most trusted CA that authorized this suite.
if (authPath == null) {
return authPath;
}
String[] result = new String[authPath.length];
System.arraycopy(authPath, 0, result, 0, authPath.length);
return result;
|
public java.lang.String | getCA()Gets the name of CA that authorized this suite.
if (authPath == null || authPath.length == 0) {
return null;
}
return authPath[0];
|
public java.lang.String | getDownloadUrl()Gets the URL that the suite was downloaded from.
String url = getJadUrl();
if (url != null) {
return url;
}
return getJarUrl();
|
public int | getID()Gets the unique ID of the suite.
return id;
|
public java.lang.String | getJadUrl()Gets the JAD URL of the suite. This is only for the installer.
return jadUrl;
|
public java.lang.String | getJarUrl()Gets the JAR URL of the suite. This is only for the installer.
return jarUrl;
|
public java.lang.String | getSecurityDomain()Gets the security domain of this suite.
return domain;
|
public final byte[] | getVerifyHash()Gets hash value for the suite with all classes successfully
verified during the suite installation, otherwise null value
will be returned
return verifyHash;
|
public boolean | isTrusted()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)
return trusted;
|
native void | load()Populates this InstallInfo instance from persistent store.
|