导航菜单

页面标题

页面副标题

Sandridge Go v2025.2.170190457 - MAMBackgroundService.java 源代码

正在查看: Sandridge Go v2025.2.170190457 应用的 MAMBackgroundService.java JAVA 源代码文件

本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。


package com.microsoft.intune.mam.client.service;

import android.app.IntentService;
import android.content.Context;
import android.content.Intent;
import com.microsoft.intune.mam.client.app.M;

public final class MAMBackgroundService extends IntentService {
    private MAMBackgroundServiceBehavior o;

    public MAMBackgroundService() {
        super(MAMBackgroundService.class.getName());
    }

    @Override
    protected void attachBaseContext(Context context) {
        M.l(context);
        super.attachBaseContext(context);
    }

    @Override
    public void onCreate() {
        super.onCreate();
        this.o = (MAMBackgroundServiceBehavior) M.e(MAMBackgroundServiceBehavior.class);
    }

    @Override
    protected void onHandleIntent(Intent intent) {
        MAMBackgroundServiceBehavior mAMBackgroundServiceBehavior = this.o;
        if (mAMBackgroundServiceBehavior != null) {
            mAMBackgroundServiceBehavior.onHandleIntent(intent);
        }
    }
}