1 18 package sync4j.syncclient.spap.installer; 19 20 import sync4j.syncclient.spap.Asset; 21 import sync4j.syncclient.spap.AssetDAO; 22 23 31 public class InstallationContext { 32 33 35 37 38 public InstallationContext() { 39 } 40 41 43 46 private String workingDirectory; 47 48 public void setWorkingDirectory(String workingDirectory) { 49 this.workingDirectory = workingDirectory; 50 } 51 52 public String getWorkingDirectory() { 53 return this.workingDirectory; 54 } 55 56 59 private String binDirectory; 60 61 public void setBinDirectory(String binDirectory) { 62 this.binDirectory = binDirectory; 63 } 64 65 public String getBinDirectory() { 66 return this.binDirectory; 67 } 68 69 72 private String libDirectory; 73 74 public void setLibDirectory(String libDirectory) { 75 this.libDirectory = libDirectory; 76 } 77 78 public String getLibDirectory() { 79 return this.libDirectory; 80 } 81 82 85 private Asset asset; 86 87 public void setAsset(Asset asset) { 88 this.asset = asset; 89 } 90 91 public Asset getAsset() { 92 return this.asset; 93 } 94 } | Popular Tags |