BlackBerry Forums Support Community
              

Closed Thread
 
Thread Tools
Old 10-13-2008, 06:26 AM   #1
josimapi
New Member
 
Join Date: Oct 2008
Model: 8820
PIN: N/A
Carrier: Vodafone
Posts: 7
Default Best way of changing application permissions

Please Login to Remove!

Hello,

I know this has been answered many times in the forums, but I just wanted to know if the next piece of code is a good way to check and change the permissions of my application.

Code:
	public static void changeApplicationPermissions() {		
		try {
			Vector vNewPermissions;
			for(int i=0; i < 3; i++)
			{
				vNewPermissions = this.checkApplicationPermissions();
				if(vNewPermissions != null)				
					this.modifyApplicationPermissions(vNewPermissions);					
				
				if((vNewPermissions != null) && (i == 2))
				{
					BBUtilities.launchDialogScreen("MyApplication is not able to work because it doesn't have enough permissions to work correctly." +
					"\MyApplication will be closed.");					
					System.exit(0);
				}
				else
					break;
			}				
		} catch (final MyApplication e1) {
			UiApplication.getUiApplication().invokeLater(new Runnable() {
				public void run() {
					Dialog.alert(e1.getMessage());
					System.exit(0);
				}
			});
			return;
		} catch (Exception e) {
			System.out.println(e.getMessage());
		}
	}
	
	public static final Vector checkApplicationPermissions() throws MyApplicationException
	{		
		try
		{			
			ApplicationPermissions permissions = ApplicationPermissionsManager.getInstance().getApplicationPermissions();
			Vector permissionsToChange = null;			
			int[] p;						
			int i;			
			
			p = new int[] { ApplicationPermissions.PERMISSION_AUTHENTICATOR_API,
							ApplicationPermissions.PERMISSION_CHANGE_DEVICE_SETTINGS,
							ApplicationPermissions.PERMISSION_CODE_MODULE_MANAGEMENT,
							ApplicationPermissions.PERMISSION_EMAIL,
							ApplicationPermissions.PERMISSION_EVENT_INJECTOR,
							ApplicationPermissions.PERMISSION_EXTERNAL_CONNECTIONS,							
							ApplicationPermissions.PERMISSION_FILE_API,
							ApplicationPermissions.PERMISSION_INTERNAL_CONNECTIONS,
							ApplicationPermissions.PERMISSION_HANDHELD_KEYSTORE,
							ApplicationPermissions.PERMISSION_LOCAL_CONNECTIONS,
							ApplicationPermissions.PERMISSION_PHONE	
						};		
			
			for(i = 0; i< p.length; i++)
			{				
				if(permissions.containsPermissionKey(p[i]))					
					if(permissions.getPermission(p[i]) != ApplicationPermissions.VALUE_ALLOW)
					{
						if(permissionsToChange == null)
							permissionsToChange = new Vector();						
						permissionsToChange.addElement(new Integer(p[i]));
					}
			}
			
			return permissionsToChange;
			
		}catch (Exception e) {		
			throw new MyApplicationException("MyApplication doesn't have enough permissions to work correctly.\MyApplication will be closed."+e.getMessage());
		}
	}	

	public static final boolean modifyApplicationPermissions(Vector vNewPermissions) throws MyApplicationException
	{		
		try{
			ApplicationPermissions permissions = ApplicationPermissionsManager.getInstance().getApplicationPermissions();
			for(int i = 0 ; i < vNewPermissions.size(); i++)
				permissions.addPermission(((Integer)vNewPermissions.elementAt(i)).intValue());				
			return ApplicationPermissionsManager.getInstance().invokePermissionsRequest(permissions);
		}catch (Exception e) {
			throw new MyApplicationException("MyApplication doesn't have enough permissions to work correctly.\MyApplication will be closed.");
		}		
	}
Do you think is better to change the permissions when the user launches the application than letting the BB prompts the user when a resource without permission is going to be used?

Does someone know which is the best way of doing this? Because I still don't have this clear enough and haven't found info related with it...

Thank you!
Offline  
Old 10-15-2008, 05:30 AM   #2
josimapi
New Member
 
Join Date: Oct 2008
Model: 8820
PIN: N/A
Carrier: Vodafone
Posts: 7
Default

I cannot believe that nobody has done something similar to this, my only question is how should I change permissions of the application. With my solution I have a bug because for those permissions that I don't want to be allowed BB automatically change them to DENY, which is a bit weird...

Am I doing something wrong?
Offline  
Closed Thread



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


GE Voltage Stabilizer 10 KVA Transformer Pri 175-235/190-260/380-520 Sec 120/240 picture

GE Voltage Stabilizer 10 KVA Transformer Pri 175-235/190-260/380-520 Sec 120/240

$648.00



Keithley  237 High Voltage Source Measure Unit picture

Keithley 237 High Voltage Source Measure Unit

$2400.00



Trek 668B High Voltage Reference / Power Supply picture

Trek 668B High Voltage Reference / Power Supply

$2500.00



Phoenix Contact Voltage Distribution Block Part No. 2315269 picture

Phoenix Contact Voltage Distribution Block Part No. 2315269

$30.00



Renogy 500A Battery Monitor High and Low Voltage Programmable Alarm 500A Shunt picture

Renogy 500A Battery Monitor High and Low Voltage Programmable Alarm 500A Shunt

$70.99



12V Digital LED Display Voltmeter Voltage Gauge Panel Meter for Car Motorcycle picture

12V Digital LED Display Voltmeter Voltage Gauge Panel Meter for Car Motorcycle

$5.99







Copyright © 2004-2016 BlackBerryForums.com.
The names RIM © and BlackBerry © are registered Trademarks of BlackBerry Inc.