com.genesyslab.platform.applicationblocks.com
Interface ConfServiceCreator
public interface ConfServiceCreator
This interface is created to allow user to create and
integrate custom ConfService.
Usage sample steps are following:
- 1. Create custom service class
public class CustomConfService extends ConfService {
public CustomConfService(final Protocol protocol) {
super(protocol);
}
// do override some methods here...
}
- 2. Initialize ConfServiceFactory with new service creator
ConfServiceFactory.setConfServiceCreator(
new ConfServiceCreator() {
public ConfService createInstance(
final Protocol protocol) {
return new CustomConfService(protocol);
}
}
);
After these operations ConfServiceFactory will create
all configuration services as customized by CustomConfService.
- See Also:
ConfServiceFactory.setConfServiceCreator(ConfServiceCreator)
createInstance
ConfService createInstance(Protocol protocol)
Send comments on this topicTechpubs.webadmin@genesys.com.
Document version: 8.5.302.00
Copyright © 2006–2017 Genesys Telecommunications Laboratories, Inc. All rights reserved.