1 7 8 package org.jboss.deployment; 9 10 25 26 public class NetBootFile 27 { 28 29 31 33 String name = null; 34 long size = 0; 35 long lastModified = 0; 36 boolean isDirectory = false; 37 String lister = null; 38 39 41 43 public NetBootFile () {} 44 45 public NetBootFile (String name, long size, long lastModified, boolean isDir, String lister) 46 { 47 this.name = name; 48 this.size = size; 49 this.lastModified = lastModified; 50 this.isDirectory = isDir; 51 this.lister = lister; 52 } 53 54 56 public String getName () 57 { 58 return this.name; 59 } 60 61 public long getSize () 62 { 63 return this.size; 64 } 65 66 public long LastModified () 67 { 68 return this.lastModified; 69 } 70 71 public boolean isDirectory() 72 { 73 return this.isDirectory; 74 } 75 76 public String getListerUrl () 77 { 78 return this.lister; 79 } 80 81 83 85 87 89 91 93 } 94 | Popular Tags |