X-Git-Url: https://git.hcoop.net/clinton/mirror/jspi/.git/blobdiff_plain/1a55f01cf981bd9174172c279ad0fd786f7b9e0f..3ea135bb6f2d874cae958af400076d5faf9d7e26:/jspi/src/main/java/de/lohndirekt/print/IppConnection.java diff --git a/jspi/src/main/java/de/lohndirekt/print/IppConnection.java b/jspi/src/main/java/de/lohndirekt/print/IppConnection.java new file mode 100644 index 0000000..44081c8 --- /dev/null +++ b/jspi/src/main/java/de/lohndirekt/print/IppConnection.java @@ -0,0 +1,50 @@ +/** + * Copyright (C) 2003 lohndirekt.de + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + */ +package de.lohndirekt.print; + +import java.io.IOException; +import java.io.InputStream; + +import org.apache.commons.httpclient.HttpException; + +/** + * + * @author sefftinge + * + */ +interface IppConnection { + /** + * @return content of the response + * @throws IOException + */ + public abstract InputStream getIppResponse() throws IOException; + + /** + * @return the statuscode of last request + * @throws IOException + */ + public abstract int getStatusCode() throws IOException; + + /** + * @param stream + */ + public abstract void setIppRequest(InputStream stream); + + public abstract boolean execute() throws HttpException, IOException; +} \ No newline at end of file