1 /*
   2  * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 package util;
  24 
  25 import java.io.InputStream;
  26 import java.io.OutputStream;
  27 import java.sql.Blob;
  28 import java.sql.SQLException;
  29 
  30 
  31 public class StubBlob implements Blob {
  32     public long length() throws SQLException {
  33         return 0;
  34     }
  35     public byte[] getBytes(long pos, int length)
  36         throws SQLException {
  37         return null;
  38     }
  39     public InputStream getBinaryStream()
  40         throws SQLException {
  41         return null;
  42     }
  43     public long position(byte[] pattern, long start)
  44         throws SQLException {
  45         return 0;
  46     }
  47     public long position(Blob pattern, long start)
  48         throws SQLException {
  49         return 0;
  50     }
  51     public int setBytes(long pos, byte[] bytes)
  52         throws SQLException {
  53         return 0;
  54     }
  55     public int setBytes(long pos, byte[] bytes, int offset, int len)
  56         throws SQLException {
  57         return 0;
  58     }
  59     public OutputStream setBinaryStream(long pos)
  60         throws SQLException {
  61         return null;
  62     }
  63     public void truncate(long len)
  64         throws SQLException {
  65     }
  66     /* 6.0 implementation */
  67 
  68     public void free() throws SQLException {}
  69 
  70     public InputStream getBinaryStream(long pos, long length) throws SQLException {
  71        return null;
  72     }
  73 }