Delete Outbound Enabler Proxy Configuration

Deletes one or more outbound enabler proxy configurations.

You can delete the following:

Syntax

void deleteOutboundEnablerProxies(java.util.List<OutboundEnablerProxyVO> outboundEnablerProxies)
                                  throws com.sybase.sup.admin.exception.SUPAdminException;
void deleteOutboundEnablerProxies(java.util.Set<java.lang.Integer> outboundEnablerProxyIds)
                                  throws com.sybase.sup.admin.exception.SUPAdminException;
void deleteOutboundEnablerProxy(java.lang.Integer outboundEnablerProxyId)
                                throws com.sybase.sup.admin.exception.SUPAdminException;
void deleteOutboundEnablerProxy(java.lang.String host,
                                java.lang.Integer port)
                                throws com.sybase.sup.admin.exception.SUPAdminException;

Parameters

Returns

If successful, deletes a list of outbound enabler proxies, or a specific outbound enabler proxy. If unsuccessful, returns SUPAdminException.

Examples