1 | |
package org.kuali.maven.plugins.dnsme.beans; |
2 | |
|
3 | |
import java.util.List; |
4 | |
|
5 | 10 | public class Account { |
6 | |
String username; |
7 | |
String password; |
8 | |
String apiKey; |
9 | |
String secretKey; |
10 | |
List<Domain> domains; |
11 | |
|
12 | |
public List<Domain> getDomains() { |
13 | 2 | return domains; |
14 | |
} |
15 | |
|
16 | |
public void setDomains(List<Domain> domains) { |
17 | 1 | this.domains = domains; |
18 | 1 | } |
19 | |
|
20 | |
public String getUsername() { |
21 | 0 | return username; |
22 | |
} |
23 | |
|
24 | |
public void setUsername(String username) { |
25 | 6 | this.username = username; |
26 | 6 | } |
27 | |
|
28 | |
public String getPassword() { |
29 | 0 | return password; |
30 | |
} |
31 | |
|
32 | |
public void setPassword(String password) { |
33 | 0 | this.password = password; |
34 | 0 | } |
35 | |
|
36 | |
public String getApiKey() { |
37 | 6 | return apiKey; |
38 | |
} |
39 | |
|
40 | |
public void setApiKey(String apiKey) { |
41 | 8 | this.apiKey = apiKey; |
42 | 8 | } |
43 | |
|
44 | |
public String getSecretKey() { |
45 | 8 | return secretKey; |
46 | |
} |
47 | |
|
48 | |
public void setSecretKey(String secretKey) { |
49 | 8 | this.secretKey = secretKey; |
50 | 8 | } |
51 | |
} |