X-Git-Url: http://git.ipfire.org/?p=thirdparty%2Fcups.git;a=blobdiff_plain;f=scripting%2Fjava%2Fsrc%2Fcom%2Feasysw%2Fcups%2FIPPURLConnection.java;fp=scripting%2Fjava%2Fsrc%2Fcom%2Feasysw%2Fcups%2FIPPURLConnection.java;h=0000000000000000000000000000000000000000;hp=505c50550dd18a62a8f0a89447ec51e9d9055439;hb=568fa3faf16f8694653600d87955473941cc03c1;hpb=d6943d1d3132205deeb6f9ad49ca54091ab3dfe5 diff --git a/scripting/java/src/com/easysw/cups/IPPURLConnection.java b/scripting/java/src/com/easysw/cups/IPPURLConnection.java deleted file mode 100644 index 505c50550..000000000 --- a/scripting/java/src/com/easysw/cups/IPPURLConnection.java +++ /dev/null @@ -1,69 +0,0 @@ -package com.easysw.cups; - -/** - * @version 1.00 06-NOV-2002 - * @author Apple Inc. - * - * Internet Printing Protocol definitions for the Common UNIX Printing - * System (CUPS). - * - * Copyright 2007 by Apple Inc. - * Copyright 1997-2002 by Easy Software Products. - * - * These coded instructions, statements, and computer programs are the - * property of Apple Inc. and are protected by Federal copyright - * law. Distribution and use rights are outlined in the file "LICENSE.txt" - * which should have been included with this file. If this file is - * file is missing or damaged, see the license at "http://www.cups.org/". - */ - -/** - * Implementation of the URLConnection interface. - * - * @author TDB - * @version 1.0 - * @since JDK1.3 - */ - -import java.util.*; -import java.io.*; -import java.net.*; - -public class IPPURLConnection extends URLConnection -{ - - /** - * Constructor. - */ - public IPPURLConnection( URL url ) - { - super(url); - } - - /** - * Determine if using proxy. - * - * @return boolean Always false for now. - */ - public boolean usingProxy() - { - return(false); - } - - /** - * Not used. - */ - public void connect() - { - return; - } - - /** - * Not used. - */ - public void disconnect() - { - return; - } - -} // end of class