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