Updates the properties of a specific server connection endpoint.
void updateEndpoint(EndpointVO endpoint) throws SUPAdminException;
If successful, returns silently. If unsuccessful, returns SUPAdminException.
EndpointVO evo = new EndpointVO();
evo.setName("sampledb2");
evo.setType(ENDPOINT_TYPE.JDBC);
Map<String, String> properties = new HashMap<String, String>();
properties.put("commitProtocol", "pessimistic");
properties.put("dataSourceClass", "com.sybase.jdbc3.jdbc.SybDataSource");
properties.put("databaseURL", "jdbc:sybase:Tds:localhost:5500/sampledb2?ServiceName=sampledb2");
evo.setExtraProps(properties);
supDomain.updateEndpoint(evo);