Coverage Report - org.trails.component.blob.ITrailsBlob
 
Classes in this File Line Coverage Branch Coverage Complexity
ITrailsBlob
N/A 
N/A 
1
 
 1  
 package org.trails.component.blob;
 2  
 
 3  
 import java.io.Serializable;
 4  
 
 5  
 public interface ITrailsBlob extends Serializable
 6  
 {
 7  
 
 8  
         String getFileName();
 9  
 
 10  
         void setFileName(String fileName);
 11  
 
 12  
         String getFilePath();
 13  
 
 14  
         void setFilePath(String filePath);
 15  
 
 16  
         String getFileExtension();
 17  
 
 18  
         void setFileExtension(String filePath);
 19  
 
 20  
         String getContentType();
 21  
 
 22  
         void setContentType(String contentType);
 23  
 
 24  
         Long getNumBytes();
 25  
 
 26  
         void setNumBytes(Long contentType);
 27  
 
 28  
         byte[] getBytes();
 29  
 
 30  
         void setBytes(byte[] bytes);
 31  
 }