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 languag�e governing permissions and 14 * limitations under the License. 15 */ 16 17 package android.printservice; 18 19 import android.print.PrinterId; 20 import android.print.PrintJobInfo; 21 import android.printservice.IPrintServiceClient; 22 23 /** 24 * Top-level interface to a print service component. 25 * 26 * @hide 27 */ 28 oneway interface IPrintService { setClient(IPrintServiceClient client)29 void setClient(IPrintServiceClient client); requestCancelPrintJob(in PrintJobInfo printJobInfo)30 void requestCancelPrintJob(in PrintJobInfo printJobInfo); onPrintJobQueued(in PrintJobInfo printJobInfo)31 void onPrintJobQueued(in PrintJobInfo printJobInfo); 32 createPrinterDiscoverySession()33 void createPrinterDiscoverySession(); startPrinterDiscovery(in List<PrinterId> priorityList)34 void startPrinterDiscovery(in List<PrinterId> priorityList); stopPrinterDiscovery()35 void stopPrinterDiscovery(); validatePrinters(in List<PrinterId> printerIds)36 void validatePrinters(in List<PrinterId> printerIds); startPrinterStateTracking(in PrinterId printerId)37 void startPrinterStateTracking(in PrinterId printerId); stopPrinterStateTracking(in PrinterId printerId)38 void stopPrinterStateTracking(in PrinterId printerId); destroyPrinterDiscoverySession()39 void destroyPrinterDiscoverySession(); 40 } 41