1 package org.kuali.common.deploy;
2
3 import java.util.List;
4
5 import org.kuali.common.util.Artifact;
6
7 public class DeployContext {
8
9 String environment;
10 String username;
11 String hostname;
12 Artifact application;
13 Artifact jdbcDriver;
14 List<Deployable> configFiles;
15
16 public String getEnvironment() {
17 return environment;
18 }
19
20 public void setEnvironment(String environment) {
21 this.environment = environment;
22 }
23
24 public String getUsername() {
25 return username;
26 }
27
28 public void setUsername(String username) {
29 this.username = username;
30 }
31
32 public String getHostname() {
33 return hostname;
34 }
35
36 public void setHostname(String hostname) {
37 this.hostname = hostname;
38 }
39
40 public Artifact getApplication() {
41 return application;
42 }
43
44 public void setApplication(Artifact application) {
45 this.application = application;
46 }
47
48 public Artifact getJdbcDriver() {
49 return jdbcDriver;
50 }
51
52 public void setJdbcDriver(Artifact jdbcDriver) {
53 this.jdbcDriver = jdbcDriver;
54 }
55
56 public List<Deployable> getConfigFiles() {
57 return configFiles;
58 }
59
60 public void setConfigFiles(List<Deployable> configFiles) {
61 this.configFiles = configFiles;
62 }
63
64 }