1/*
2 * Copyright (C) 2013 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 android.printservice;
18
19import android.print.PrinterId;
20import android.print.PrintJobInfo;
21import android.printservice.IPrintServiceClient;
22
23/**
24 * Top-level interface to a print service component.
25 *
26 * @hide
27 */
28oneway interface IPrintService {
29    void setClient(IPrintServiceClient client);
30    void requestCancelPrintJob(in PrintJobInfo printJobInfo);
31    void onPrintJobQueued(in PrintJobInfo printJobInfo);
32
33    void createPrinterDiscoverySession();
34    void startPrinterDiscovery(in List<PrinterId> priorityList);
35    void stopPrinterDiscovery();
36    void validatePrinters(in List<PrinterId> printerIds);
37    void startPrinterStateTracking(in PrinterId printerId);
38
39    /**
40     * Request the custom icon for a printer.
41     *
42     * @param printerId the id of the printer the icon should be loaded for
43     * @see android.print.PrinterInfo.Builder#setHasCustomPrinterIcon()
44     */
45    void requestCustomPrinterIcon(in PrinterId printerId);
46
47    void stopPrinterStateTracking(in PrinterId printerId);
48    void destroyPrinterDiscoverySession();
49}
50