Blob.java 525 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.day.crx.delite.impl.support;

import java.io.File;
import java.io.IOException;
import java.io.InputStream;

public interface Blob {
    public byte[] getBytes(int var1, int var2) throws IOException;

    public byte[] getBytes() throws IOException;

    public long size() throws IOException;

    public void close() throws IOException;

    public InputStream getInputStream() throws IOException;

    public File getFile() throws IOException;

    public void detach();
}