1 | /** |
2 | * BSD-style license; for more info see http://xradar.sourceforge.net/license.html |
3 | */ |
4 | package org.sourceforge.xradar.dynamics; |
5 | |
6 | /** |
7 | * <p>A data container for configuration and data required for the 'dynamic' part of XRadar.</p> |
8 | * |
9 | * @author Zahir Nuckchady, zahir.nu@gmail.com |
10 | * |
11 | */ |
12 | public class DynamicsOptionalParameters { |
13 | private boolean staticsConfigured = true; |
14 | private boolean debug; |
15 | private String config; |
16 | private String target; |
17 | /** |
18 | * @return the staticsConfigured |
19 | */ |
20 | public boolean isStaticsConfigured() { |
21 | return staticsConfigured; |
22 | } |
23 | /** |
24 | * @param staticsConfigured the staticsConfigured to set |
25 | */ |
26 | public void setStaticsConfigured(boolean staticsConfigured) { |
27 | this.staticsConfigured = staticsConfigured; |
28 | } |
29 | /** |
30 | * @return the debug |
31 | */ |
32 | public boolean isDebug() { |
33 | return debug; |
34 | } |
35 | /** |
36 | * @param debug the debug to set |
37 | */ |
38 | public void setDebug(boolean debug) { |
39 | this.debug = debug; |
40 | } |
41 | /** |
42 | * @return the config |
43 | */ |
44 | public String getConfig() { |
45 | return config; |
46 | } |
47 | /** |
48 | * @param config the config to set |
49 | */ |
50 | public void setConfig(String config) { |
51 | this.config = config; |
52 | } |
53 | /** |
54 | * @return the target |
55 | */ |
56 | public String getTarget() { |
57 | return target; |
58 | } |
59 | /** |
60 | * @param target the target to set |
61 | */ |
62 | public void setTarget(String target) { |
63 | this.target = target; |
64 | } |
65 | |
66 | |
67 | } |