IWapPushManagerpublic interface IWapPushManager implements android.os.IInterface
Methods Summary |
---|
public boolean | addPackage(java.lang.String x_app_id, java.lang.String content_type, java.lang.String package_name, java.lang.String class_name, int app_type, boolean need_signature, boolean further_processing)Add receiver application into the application ID table.
Returns true if inserting the information is successfull. Inserting the duplicated
record in the application ID table is not allowed. Use update/delete method.
| public boolean | deletePackage(java.lang.String x_app_id, java.lang.String content_type, java.lang.String package_name, java.lang.String class_name)Delites receiver application information.
Returns true if deleting is successfull.
| public int | processMessage(java.lang.String app_id, java.lang.String content_type, android.content.Intent intent)Processes WAP push message and triggers the receiver application registered
in the application ID table.
| public boolean | updatePackage(java.lang.String x_app_id, java.lang.String content_type, java.lang.String package_name, java.lang.String class_name, int app_type, boolean need_signature, boolean further_processing)Updates receiver application that is last added.
Returns true if updating the information is successfull.
|
|