Retrieval of Replication Pull Notification Configuration

Retrieves the configuration of the replication pull notification.

Syntax

ServerComponentVO getReplicationNotifierConfiguration(REPLICATION_NOTIFIER_TYPE replicationNotiferType) throws SUPAdminException;

Returns

If successful, returns an object of the specified type (can be null). If unsuccessful, returns SUPAdminException.

Examples

  • Retrieval – retrieves the configuration of the replication pull notification, including the ID, type, and properties:
    supServerConf.refresh();
    ServerComponentVO scvo = supServerConf
    		.getReplicationNotifierConfiguration(REPLICATION_NOTIFIER_TYPE.PULL);
    System.out.println(scvo.getID());
    System.out.println(scvo.getType());
    System.out.println(scvo.getProperties());