01: /*
02: * JFolder, Copyright 2001-2006 Gary Steinmetz
03: *
04: * Distributable under LGPL license.
05: * See terms of license at gnu.org.
06: */
07:
08: package org.jfolder.dms.model;
09:
10: //base classes
11: import java.util.ArrayList;
12: import java.util.HashMap;
13: import java.util.Iterator;
14:
15: //project specific classes
16: import org.jfolder.common.UnexpectedSystemException;
17: import org.jfolder.common.entity.SystemEntity;
18: import org.jfolder.common.entity.SystemEntityUpdates;
19: import org.jfolder.common.entity.SystemEntityUpdatesContext;
20: import org.jfolder.security.audit.SecurityAudit;
21:
22: //other classes
23:
24: public interface DocumentFileSystemFileUpdates extends
25: SystemEntityUpdates {
26:
27: //
28: public String getPath();
29:
30: public String getName();
31:
32: public byte[] getContent();
33: }
|