VolD 0.1

SimpleDirectory.java

Go to the documentation of this file.
00001 
00002 package de.zib.vold.volatilelogic;
00003 
00004 import java.util.List;
00005 import java.util.Set;
00006 import java.util.Map;
00007 
00023 public interface SimpleDirectory
00024 {
00031         void insert( List< String > key, Set< String > value );
00032 
00040         void refresh( List< String > key );
00041 
00047         void delete( List< String > key );
00048 
00055         Set< String > lookup( List< String > key );
00056 
00063         Map< List< String >, Set< String > > prefixLookup( List< String > prefix );
00064 }