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