Interface HookedService
-
- All Implemented Interfaces:
-
com.microsoft.intune.mam.client.app.HookedContextWrapper,com.microsoft.intune.mam.client.app.MAMIdentityRequirementListener
public interface HookedService implements HookedContextWrapper, MAMIdentityRequirementListener
Allow access to an Service's super class implementation.
-
-
Method Summary
Modifier and Type Method Description abstract IBinderonMAMBind(Intent intent)MAM version of onBind. abstract intonMAMStartCommand(Intent intent, int flags, int startId)MAM version of onStartCommand. abstract voidonMAMStart(Intent intent, int startId)MAM version of onStart. -
-
Method Detail
-
onMAMBind
abstract IBinder onMAMBind(Intent intent)
MAM version of onBind.
- Parameters:
intent- See onBind.- Returns:
See onBind.
-
onMAMStartCommand
abstract int onMAMStartCommand(Intent intent, int flags, int startId)
MAM version of onStartCommand.
- Parameters:
intent- See onStartCommand.flags- See onStartCommand.startId- See onStartCommand.- Returns:
See onStartCommand.
-
onMAMStart
@Deprecated() abstract void onMAMStart(Intent intent, int startId)
MAM version of onStart.
- Parameters:
intent- See onStart.startId- See onStart.
-
-
-
-