ConditionProviders.java revision 7340fc8665ae3f9f1978f42aa0e5e1da85036158
1/**
2 * Copyright (c) 2014, The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *     http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.server.notification;
18
19import android.content.Context;
20import android.os.Handler;
21import android.os.IBinder;
22import android.os.IInterface;
23import android.provider.Settings;
24import android.service.notification.IConditionProvider;
25import android.service.notification.ConditionProviderService;
26import android.util.Slog;
27
28import com.android.internal.R;
29
30public class ConditionProviders extends ManagedServices {
31
32    public ConditionProviders(Context context, Handler handler,
33            Object mutex, UserProfiles userProfiles) {
34        super(context, handler, mutex, userProfiles);
35    }
36
37    @Override
38    protected Config getConfig() {
39        Config c = new Config();
40        c.caption = "condition provider";
41        c.serviceInterface = ConditionProviderService.SERVICE_INTERFACE;
42        c.secureSettingName = Settings.Secure.ENABLED_CONDITION_PROVIDERS;
43        c.bindPermission = android.Manifest.permission.BIND_CONDITION_PROVIDER_SERVICE;
44        c.settingsAction = Settings.ACTION_CONDITION_PROVIDER_SETTINGS;
45        c.clientLabel = R.string.condition_provider_service_binding_label;
46        return c;
47    }
48
49    @Override
50    protected IInterface asInterface(IBinder binder) {
51        return IConditionProvider.Stub.asInterface(binder);
52    }
53
54    @Override
55    protected void onServiceAdded(IInterface service) {
56        Slog.d(TAG, "onServiceAdded " + service);
57    }
58}
59