blob: a1da29c7082eda1b7cb62e72680c22cb9cf77829 [file] [log] [blame]
Adnan Begovicaa8614e2015-04-23 23:16:27 -07001/**
2 * Copyright (c) 2015, The CyanogenMod 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 cyanogenmod.app;
18
19/**
Adnan Begovice2feecb2015-05-27 15:05:11 -070020 * @hide
21 * TODO: We need to somehow make these managers accessible via getSystemService
Adnan Begovicaa8614e2015-04-23 23:16:27 -070022 */
Adnan Begovice2feecb2015-05-27 15:05:11 -070023public final class CMContextConstants {
Adnan Begovicaa8614e2015-04-23 23:16:27 -070024
25 /**
26 * @hide
27 */
28 private CMContextConstants() {
29 // Empty constructor
30 }
31
32 /**
33 * Use with {@link android.content.Context#getSystemService} to retrieve a
34 * {@link cyanogenmod.app.CMStatusBarManager} for informing the user of
35 * background events.
36 *
37 * @see android.content.Context#getSystemService
38 * @see cyanogenmod.app.CMStatusBarManager
39 */
40 public static final String CM_STATUS_BAR_SERVICE = "cmstatusbar";
41
Adnan Begovic4334b3d2015-06-25 12:54:38 -070042 /**
43 * Use with {@link android.content.Context#getSystemService} to retrieve a
44 * {@link cyanogenmod.app.ProfileManager} for informing the user of
45 * background events.
46 *
47 * @see android.content.Context#getSystemService
48 * @see cyanogenmod.app.ProfileManager
49 *
50 * @hide
51 */
52 public static final String CM_PROFILE_SERVICE = "profile";
Matt Garnes0cdb1d52015-07-14 16:29:56 -070053
54 /**
55 * Use with {@link android.content.Context#getSystemService} to retrieve a
Matt Garneseabd5752015-09-05 14:25:07 -070056 * {@link cyanogenmod.app.PartnerInterface} interact with system settings.
Matt Garnes0cdb1d52015-07-14 16:29:56 -070057 *
58 * @see android.content.Context#getSystemService
Matt Garneseabd5752015-09-05 14:25:07 -070059 * @see cyanogenmod.app.PartnerInterface
Matt Garnes0cdb1d52015-07-14 16:29:56 -070060 *
61 * @hide
62 */
Matt Garneseabd5752015-09-05 14:25:07 -070063 public static final String CM_PARTNER_INTERFACE = "cmpartnerinterface";
Joao Figueiredo7f503352015-08-06 23:59:02 +010064
65 /**
66 * Use with {@link android.content.Context#getSystemService} to retrieve a
67 * {@link cyanogenmod.app.CMTelephonyManager} to manage the phone and
68 * data connection.
69 *
70 * @see android.content.Context#getSystemService
71 * @see cyanogenmod.app.CMTelephonyManager
72 *
73 * @hide
74 */
75 public static final String CM_TELEPHONY_MANAGER_SERVICE = "cmtelephonymanager";
Steve Kondik5ee87cb2015-08-16 22:33:30 -070076
77 /**
78 * Use with {@link android.content.Context#getSystemService} to retrieve a
79 * {@link cyanogenmod.hardware.CMHardwareManager} to manage the extended
80 * hardware features of the device.
81 *
82 * @see android.content.Context#getSystemService
83 * @see cyanogenmod.hardware.CMHardwareManager
84 *
85 * @hide
86 */
87 public static final String CM_HARDWARE_SERVICE = "cmhardware";
herriojre78ca4d2015-09-08 13:59:20 -070088
89 /**
90 * @hide
91 */
92 public static final String CM_APP_SUGGEST_SERVICE = "cmappsuggest";
Steve Kondik620c35b2015-11-02 17:43:44 -080093
94 /**
95 * Control device power profile and characteristics.
96 *
97 * @hide
98 */
99 public static final String CM_PERFORMANCE_SERVICE = "cmperformance";
d34db3ea2852016-02-23 09:58:53 -0800100
101 /**
102 * Controls changing and applying themes
103 *
104 * @hide
105 */
106 public static final String CM_THEME_SERVICE = "cmthemes";
107
108 /**
109 * Manages composed icons
110 *
111 * @hide
112 */
113 public static final String CM_ICON_CACHE_SERVICE = "cmiconcache";
Adnan Begovicaa8614e2015-04-23 23:16:27 -0700114}