< prev index next >

jaxws/src/java.activation/share/classes/javax/activation/DataSource.java

Print this page

        

@@ -1,7 +1,7 @@
 /*
- * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2017, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
  * under the terms of the GNU General Public License version 2 only, as
  * published by the Free Software Foundation.  Oracle designates this

@@ -47,10 +47,11 @@
      * not do so.  Note that a new <code>InputStream</code> object must be
      * returned each time this method is called, and the stream must be
      * positioned at the beginning of the data.
      *
      * @return an InputStream
+     * @exception       IOException     for failures creating the InputStream
      */
     public InputStream getInputStream() throws IOException;
 
     /**
      * This method returns an <code>OutputStream</code> where the

@@ -58,10 +59,11 @@
      * not do so.  Note that a new <code>OutputStream</code> object must
      * be returned each time this method is called, and the stream must
      * be positioned at the location the data is to be written.
      *
      * @return an OutputStream
+     * @exception       IOException     for failures creating the OutputStream
      */
     public OutputStream getOutputStream() throws IOException;
 
     /**
      * This method returns the MIME type of the data in the form of a
< prev index next >