Retrieves the properties of the replication notifier configuration of the specified type.
ServerComponentVO getReplicationNotifierConfiguration(REPLICATION_NOTIFIER_TYPE replicationNotifierType) throws SUPAdminException;
If successful, returns an object of the specified type (can be null). If unsuccessful, returns SUPAdminException.
supServerConf.refresh();
ServerComponentVO scvo = supServerConf.getReplicationNotifierConfiguration
(REPLICATION_NOTIFIER_TYPE.PUSH);
System.out.println(scvo.getID());
System.out.println(scvo.getType());
System.out.println(scvo.getProperties());