blob: 2cee1d84d0fbfdda8cb76f3b3364d1a14bdf798f [file] [log] [blame]
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -07001/*
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.
Svetoslav Ganov798bed62013-08-11 12:29:39 -070013 * See the License for the specific languagÿe governing permissions and
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -070014 * limitations under the License.
15 */
16
17package android.printservice;
18
Svetoslav269403b2013-08-14 17:31:04 -070019import android.print.PrinterId;
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -070020import android.print.PrintJobInfo;
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -070021import 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);
Svetoslav Ganov798bed62013-08-11 12:29:39 -070030 void requestCancelPrintJob(in PrintJobInfo printJobInfo);
Svetoslav Ganova0027152013-06-25 14:59:53 -070031 void onPrintJobQueued(in PrintJobInfo printJobInfo);
Svetoslav269403b2013-08-14 17:31:04 -070032
33 void createPrinterDiscoverySession();
34 void startPrinterDiscovery(in List<PrinterId> priorityList);
35 void stopPrinterDiscovery();
36 void requestPrinterUpdate(in PrinterId printerId);
37 void destroyPrinterDiscoverySession();
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -070038}