1 17 package org.alfresco.service.cmr.repository; 18 19 import org.alfresco.service.transaction.TransactionService; 20 21 26 public interface ContentAccessor 27 { 28 44 public void addListener(ContentStreamListener listener); 45 46 55 public void setTransactionService(TransactionService transactionService); 56 57 63 public long getSize(); 64 65 76 public ContentData getContentData(); 77 78 83 public String getContentUrl(); 84 85 90 public String getMimetype(); 91 92 97 public void setMimetype(String mimetype); 98 99 104 public String getEncoding(); 105 106 111 public void setEncoding(String encoding); 112 } 113 | Popular Tags |