Updates an existing Relay Server outbound enabler configuration.
void updateOutboundEnabler(int outboundEnablerId, OutboundEnablerVO outboundEnabler) throws com.sybase.sup.admin.exception.SUPAdminException
If successful, updates the specified outbound enabler configuration(s). If unsuccessful, returns SUPAdminException .
Iterator<OutboundEnablerVO> iter = supServerConf
.getOutboundEnablers().iterator();
if (!iter.hasNext())
return;
OutboundEnablerVO oe1 = iter.next();
oe1.setCertificateFile("4321");
supServerConf.updateOutboundEnabler(oe1.getID(), oe1);