blob: bc6b83ba1def8566ce333aadec112ee4b2924609 [file] [log] [blame]
Dave Mankoffeb593ae2019-09-04 11:31:55 -04001/*
2 * Copyright (C) 2019 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
Dave Mankofff4736812019-10-18 17:25:50 -040017package com.android.systemui.dagger.qualifiers;
Dave Mankoffeb593ae2019-09-04 11:31:55 -040018
Dave Mankofff4736812019-10-18 17:25:50 -040019import static java.lang.annotation.RetentionPolicy.RUNTIME;
Dave Mankoffeb593ae2019-09-04 11:31:55 -040020
Dave Mankofff4736812019-10-18 17:25:50 -040021import java.lang.annotation.Documented;
22import java.lang.annotation.Retention;
23
24import javax.inject.Qualifier;
25
26@Qualifier
27@Documented
28@Retention(RUNTIME)
29public @interface BgHandler {
Dave Mankoffeb593ae2019-09-04 11:31:55 -040030}