Coverage Report - org.apache.commons.contract.Store
 
Classes in this File Line Coverage Branch Coverage Complexity
Store
N/A
N/A
1
 
 1  
 package org.apache.commons.contract;
 2  
 
 3  
 public interface Store {
 4  
     String getId();
 5  
     
 6  
     void put(String key, Object value, Context context) throws StoreException;
 7  
 
 8  
     Object get(String key, Context context) throws StoreException;
 9  
 
 10  
     void dispose(String key, Context context) throws StoreException;
 11  
 }