aboutsummaryrefslogtreecommitdiff
path: root/src/uk/org/ury/config/Database.java
blob: c1074df7cad0b25c015736fc4ec66145b39e9ba4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package uk.org.ury.config;

public class Database {

	private String host;
	private int port;
	private String db;
	
	public String getHost() { return host; }
	public int getPort() { return port; }
	public String getDb() { return db; }
	
	public Database(String host, int port, String db) {
		this.host = host;
		this.port = port;
		this.db = db;
	}
	
}