File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
src/main/java/org/asteriskjava/manager/response Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ public class CoreSettingsResponse extends ManagerResponse {
39
39
private Boolean coreRealtimeEnabled ;
40
40
private Boolean coreCdrEnabled ;
41
41
private Boolean coreHttpEnabled ;
42
+ private Boolean soundsSearchCustomDir ;
42
43
43
44
/**
44
45
* Returns the version of the Asterisk Manager Interface (AMI). For Asterisk 1.6 this is "1.1".
@@ -152,4 +153,12 @@ public boolean isCoreHttpEnabled() {
152
153
public void setCoreHttpEnabled (Boolean coreHttpEnabled ) {
153
154
this .coreHttpEnabled = coreHttpEnabled ;
154
155
}
156
+
157
+ public boolean isSoundsSearchCustomDir () {
158
+ return soundsSearchCustomDir != null && soundsSearchCustomDir ;
159
+ }
160
+
161
+ public void setSoundsSearchCustomDir (Boolean soundsSearchCustomDir ) {
162
+ this .soundsSearchCustomDir = soundsSearchCustomDir ;
163
+ }
155
164
}
You can’t perform that action at this time.
0 commit comments