Retrieval of Replication Push Notification Configuration

Retrieves the properties of the replication notifier configuration of the specified type.

Syntax

ServerComponentVO getReplicationNotifierConfiguration(REPLICATION_NOTIFIER_TYPE replicationNotifierType) 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 push notification:
    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());