Retrieves a list of endpoint templates in the domain. The supported endpoint template types are JDBC, SAP®, and WEBSERVICE.
Collection<EndpointVO> getEndpointTemplates(ENDPOINT_TYPE type) throws SUPAdminException;
If successful, returns an object of the specified type (can be null). If unsuccessful, returns SUPAdminException.
for (EndpointVO evo : supDomain
		.getEndpointTemplates(ENDPOINT_TYPE.JDBC)) {
	System.out.println(evo.getName());
	System.out.println(evo.getExtraProps());
}
for (EndpointVO evo : supDomain.getEndpointTemplates(ENDPOINT_TYPE.SAP)) {
	System.out.println(evo.getName());
	System.out.println(evo.getExtraProps());
}
for (EndpointVO evo : supDomain
		.getEndpointTemplates(ENDPOINT_TYPE.WEBSERVICE)) {
	System.out.println(evo.getName());
	System.out.println(evo.getExtraProps());
}