1 16 17 package org.apache.axis2.deployment.repository.util; 18 19 20 public class WSInfo { 21 22 private String filename; 23 private long lastmodifieddate; 24 27 private int type; 28 29 public WSInfo(String filename, long lastmodifieddate) { 30 this.filename = filename; 31 this.lastmodifieddate = lastmodifieddate; 32 } 33 34 public WSInfo(String filename, long lastmodifieddate, int type) { 35 this.filename = filename; 36 this.lastmodifieddate = lastmodifieddate; 37 this.type = type; 38 } 39 40 public String getFilename() { 41 return filename; 42 } 43 44 public void setFilename(String filename) { 45 this.filename = filename; 46 } 47 48 public long getLastmodifieddate() { 49 return lastmodifieddate; 50 } 51 52 public void setLastmodifieddate(long lastmodifieddate) { 53 this.lastmodifieddate = lastmodifieddate; 54 } 55 56 public int getType() { 57 return type; 58 } 59 } 60 | Popular Tags |