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