]> git.ipfire.org Git - thirdparty/cups.git/blob - scripting/java/src/com/easysw/cups/IPPURLConnection.java
Add missing files for test.
[thirdparty/cups.git] / scripting / java / src / com / easysw / cups / IPPURLConnection.java
1 package com.easysw.cups;
2
3 /**
4 * @version 1.00 06-NOV-2002
5 * @author Apple Inc.
6 *
7 * Internet Printing Protocol definitions for the Common UNIX Printing
8 * System (CUPS).
9 *
10 * Copyright 2007 by Apple Inc.
11 * Copyright 1997-2002 by Easy Software Products.
12 *
13 * These coded instructions, statements, and computer programs are the
14 * property of Apple Inc. and are protected by Federal copyright
15 * law. Distribution and use rights are outlined in the file "LICENSE.txt"
16 * which should have been included with this file. If this file is
17 * file is missing or damaged, see the license at "http://www.cups.org/".
18 */
19
20 /**
21 * Implementation of the URLConnection interface.
22 *
23 * @author TDB
24 * @version 1.0
25 * @since JDK1.3
26 */
27
28 import java.util.*;
29 import java.io.*;
30 import java.net.*;
31
32 public class IPPURLConnection extends URLConnection
33 {
34
35 /**
36 * Constructor.
37 */
38 public IPPURLConnection( URL url )
39 {
40 super(url);
41 }
42
43 /**
44 * Determine if using proxy.
45 *
46 * @return <code>boolean</code> Always <code>false</code> for now.
47 */
48 public boolean usingProxy()
49 {
50 return(false);
51 }
52
53 /**
54 * Not used.
55 */
56 public void connect()
57 {
58 return;
59 }
60
61 /**
62 * Not used.
63 */
64 public void disconnect()
65 {
66 return;
67 }
68
69 } // end of class