BlobFactory.java 489 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.day.crx.explorer.impl.util;

import com.day.crx.explorer.impl.util.Blob;
import com.day.crx.explorer.impl.util.BlobOutputStream;
import java.io.IOException;

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

    public Blob create(byte[] var1) throws IOException;

    public BlobOutputStream createOutputStream() throws IOException;

    public void close() throws IOException;
}