1 package jcifs.smb;2 3 public interface FileEntry {4 5 String getName();6 int getType();7 int getAttributes();8 long createTime();9 long lastModified();10 long length();11 }12