|
VolD 0.1
|
00001 package de.zib.vold.common; 00002 00003 import de.zib.vold.common.Key; 00004 00005 import java.util.Set; 00006 import java.util.Map; 00007 00011 public interface VoldInterface 00012 { 00020 public Map< String, String > insert( String source, Map< Key, Set< String > > map ); 00021 00029 public Map< String, String > refresh( String source, Set< Key > set ); 00030 00037 public Map< String, String > delete( String source, Set< Key > set ); 00038 00045 public Map< Key, Set< String > > lookup( Set<Key> keys ); 00046 }