Show TOC

Creating a Mobile Device Management ProviderLocate this document in the navigation structure

Use

You can enable a Mobile Device Management (MDM) system to handle installation requests for mobile applications in the personalized launcher.

The relevant API is contained in the com.sap.portal.mdm.connectivity package.

  1. Extend the AbstractAppRequestHandler class by implementing all of the methods.

  2. Register the application handler as shown in the example below.

IRegistration mdmRegistration = (IRegistration) PortalRuntime.getRuntimeResources().getService(IRegistration.KEY);

AbstractAppRequestHandler myAppRequestHandler = new MyAppRequestHandler();
mdmRegistration.register(myAppRequestHandler);