//(c):Benja Fallenstein package gzz.storm.impl; import gzz.storm.*; import gzz.storm.headers.*; import java.io.*; import java.util.*; public class DirPool implements StormPool { public Block get(BlockId id) { return null; } public void add(Block b) {} public void delete(Block b) {} public Set getIds() { return null; } public BlockOutputStream getBlockOutputStream(String contentType) throws IOException { return null; } public BlockOutputStream getBlockOutputStream(Header822 hdr) throws IOException { return null; } public String getDefaultPoolName() { return null; } public Set getPoolNames() { return null; } }