summaryrefslogtreecommitdiff
path: root/reportdesign/java/com/sun/star/report/OutputRepository.java
diff options
context:
space:
mode:
Diffstat (limited to 'reportdesign/java/com/sun/star/report/OutputRepository.java')
-rw-r--r--reportdesign/java/com/sun/star/report/OutputRepository.java67
1 files changed, 67 insertions, 0 deletions
diff --git a/reportdesign/java/com/sun/star/report/OutputRepository.java b/reportdesign/java/com/sun/star/report/OutputRepository.java
new file mode 100644
index 000000000000..ad72844c276e
--- /dev/null
+++ b/reportdesign/java/com/sun/star/report/OutputRepository.java
@@ -0,0 +1,67 @@
+/*************************************************************************
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * $RCSfile: OutputRepository.java,v $
+ *
+ * $Revision: 1.2 $
+ *
+ * last change: $Author: rt $ $Date: 2007-07-09 11:56:03 $
+ *
+ * The Contents of this file are made available subject to
+ * the terms of GNU Lesser General Public License Version 2.1.
+ *
+ *
+ * GNU Lesser General Public License Version 2.1
+ * =============================================
+ * Copyright 2007 by Sun Microsystems, Inc.
+ * 901 San Antonio Road, Palo Alto, CA 94303, USA
+ * Copyright 2007 by Pentaho Corporation
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1, as published by the Free Software Foundation.
+ *
+ * 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 com.sun.star.report;
+
+import java.io.OutputStream;
+import java.io.IOException;
+
+/**
+ * A repository for writing. Providing a repository always assumes,
+ * that more than one stream can be written.
+ *
+ * @author Thomas Morgner
+ */
+public interface OutputRepository
+{
+ /**
+ * Creates an output stream for writing the data. If there is an entry with
+ * that name already contained in the repository, try to overwrite it.
+ *
+ * @param name
+ * the name of the output stream
+ * @param mimeType
+ * the mime type of the to-be-created output stream. Repository implementations which do not support
+ * associating a mime time with a stream might ignore this parameter.
+ * @return the outputstream
+ * @throws IOException if opening the stream fails
+ */
+ public OutputStream createOutputStream (String name, String mimeType) throws IOException;
+
+ public boolean exists (String name);
+ public boolean isWritable (String name);
+
+}