Phone Calls - Custom Operators
You may define your own phone operator that would be tasked to make calls, etc using the following
bean definition and by implementing PhoneCallOperator
:
1
2
3
4
@Bean
public PhoneCallOperator phoneCallOperator() {
return new MyPhoneCallOperator();
}
See this guide to learn more about how to register configurations into the CAS runtime.