Creates a server connection endpoint template for the specified endpoint type.
void createEndpointTemplate(ENDPOINT_TYPE type, String name, String template, Map<String, String> properties) throws SUPAdminException;
If successful, returns silently. If unsuccessful, returns SUPAdminException.
Map<String, String> properties = new HashMap<String, String>();
properties.put("commitProtocol", "<commit protocol>");
properties.put("dataSourceClass", "<data source class>");
properties.put("databaseURL", "<database URL>");
properties.put("user", "<user name>");
properties.put("password", "<password>");
supDomain.createEndpointTemplate(ENDPOINT_TYPE.JDBC, "myJDBC_template",
				"Sybase_ASA_template", properties);
properties.clear();
properties.put("jco.client.user", "<jco client user>");
properties.put("jco.client.passwd", "<jco client password>");
properties.put("jco.client.ashost", "<jco client AS host>");
properties.put("jco.client.client", "<jco client>");
supDomain.createEndpointTemplate(ENDPOINT_TYPE.SAP, "mySAP_template",
		"sap_template", properties);
properties.clear();
properties.put("address", "<address>");
properties.put("user", "<user name>");
properties.put("password", "<password>");
supDomain.createEndpointTemplate(ENDPOINT_TYPE.WEBSERVICE,
		"myWS_template", "webservice_template", properties);