35
35
import org .sipfoundry .sipxconfig .domain .Domain ;
36
36
import org .sipfoundry .sipxconfig .setting .Setting ;
37
37
import org .sipfoundry .sipxconfig .setting .SettingUtil ;
38
+ import org .springframework .beans .factory .annotation .Required ;
38
39
39
40
public class RestConfiguration implements ConfigProvider {
40
41
private RestServer m_restServer ;
41
42
private VelocityEngine m_velocityEngine ;
42
43
private String m_restSettingKey = "rest-config" ;
44
+ private String m_postgresPwd ;
43
45
44
46
@ Override
45
47
public void replicate (ConfigManager manager , ConfigRequest request ) throws IOException {
@@ -80,6 +82,7 @@ void write(Writer wtr, RestServerSettings settings, Location location,
80
82
context .put ("location" , location );
81
83
context .put ("domainName" , domain .getName ());
82
84
context .put ("sipxcdrDbAddress" , sipxcdrApi .toString ());
85
+ context .put ("postgresPwd" , m_postgresPwd );
83
86
try {
84
87
m_velocityEngine .mergeTemplate ("sipxrest/sipxrest-config.vm" , context , wtr );
85
88
} catch (Exception e ) {
@@ -94,4 +97,9 @@ public void setRestServer(RestServer restServer) {
94
97
public void setVelocityEngine (VelocityEngine velocityEngine ) {
95
98
m_velocityEngine = velocityEngine ;
96
99
}
100
+
101
+ @ Required
102
+ public void setPostgresPwd (String postgresPwd ) {
103
+ m_postgresPwd = postgresPwd ;
104
+ }
97
105
}
0 commit comments