blob: 96324d8295732ae989a337fb5966fe3976ca47bf [file] [log] [blame]
Julia Reynolds7eba5932015-12-11 16:40:39 -05001/**
2 * Copyright (c) 2015, 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 */
Chris Wren51017d02015-12-15 15:34:46 -050016package com.android.server.notification;
Julia Reynolds7eba5932015-12-11 16:40:39 -050017
Chris Wren51017d02015-12-15 15:34:46 -050018public interface RankingHandler {
Julia Reynoldseb3dca72017-07-11 10:39:58 -040019 public void requestSort();
Chris Wren51017d02015-12-15 15:34:46 -050020 public void requestReconsideration(RankingReconsideration recon);
Julia Reynoldseb3dca72017-07-11 10:39:58 -040021}