Retrieves one or more Relay Server outbound enabler configurations for the Unwired Server.
List<OutboundEnablerVO> getOutboundEnablers() throws SUPAdminException;
OutboundEnablerVO getOutboundEnabler() throws SUPAdminException;
If successful, returns an object of the specified type (can be null). If unsuccessful, returns SUPAdminException.
// get all Outbound Enablers of this server List<OutboundEnablerVO> outboundEnablers = serverConfiguration .getOutboundEnablers();
// get Outbound Enabler by specified ID. OutboundEnablerVO outboundEnabler = serverConfiguration .getOutboundEnabler(3);