Home | History | Annotate | Download | only in ftp

Lines Matching refs:FtpDirEntry

31  * A {@code FtpDirEntry} is a class agregating all the information that the FTP client
40 public class FtpDirEntry {
66 private FtpDirEntry() {
71 * Creates an FtpDirEntry instance with only the name being set.
75 public FtpDirEntry(String name) {
105 * @return this FtpDirEntry
107 public FtpDirEntry setUser(String user) {
129 * @return this FtpDirEntry
131 public FtpDirEntry setGroup(String group) {
151 * @return this FtpDirEntry
153 public FtpDirEntry setSize(long size) {
161 * It returns a FtpDirEntry.Type enum and the values can be:
162 * - FtpDirEntry.Type.FILE for a normal file
163 * - FtpDirEntry.Type.DIR for a directory
164 * - FtpDirEntry.Type.LINK for a symbolic link
166 * @return a {@code FtpDirEntry.Type} describing the type of the file
179 * @return this FtpDirEntry
181 public FtpDirEntry setType(Type type) {
204 * @return this FtpDirEntry
206 public FtpDirEntry setLastModified(Date lastModified) {
259 * @return this {@code FtpDirEntry}
261 public FtpDirEntry setPermissions(boolean[][] permissions) {
273 * @return this {@code FtpDirEntry}
275 public FtpDirEntry addFact(String fact, String value) {
307 * @return this FtpDirEntry
309 public FtpDirEntry setCreated(Date created) {
316 * The {@code toString} method for class {@code FtpDirEntry}