*/
public final CbProtocolManager getCbProtocolManager() throws XmlBlasterException {
if (this.cbProtocolManager == null) {
synchronized(this) {
if (this.cbProtocolManager == null)
this.cbProtocolManager = new CbProtocolManager(this);
}
}
return this.cbProtocolManager;
}