Coverage Report - org.webslinger.util.MimeTypeLookup
 
Classes in this File Line Coverage Branch Coverage Complexity
MimeTypeLookup
N/A
N/A
1
 
 1  
 package org.webslinger.util;
 2  
 
 3  
 import java.io.IOException;
 4  
 import java.util.Iterator;
 5  
 
 6  
 public interface MimeTypeLookup {
 7  
     String getMimeType(String extension) throws IOException;
 8  
     String getPrimaryExtension(String mimeType) throws IOException;
 9  
     String[] getExtensions(String mimeType) throws IOException;
 10  
 }