private static int DYNAMIC_ENDPOITNT_TEMPLATES = 1;
public static EndpointTemplateInfo[] getEndpointTemplates(int pageNumber, int endpointTemplatesPerPage) {
EndpointTemplateInfo[] templates = new EndpointTemplateInfo[STATIC_ENDPOINT_TEMPLATES];
EndpointTemplateInfo templ1 = new EndpointTemplateInfo();
templ1.setTemplateName("endp_template_address");
templ1.setEndpointType("address");
EndpointTemplateInfo templ2 = new EndpointTemplateInfo();
templ2.setTemplateName("endp_template_wsdl");
templ2.setEndpointType("wsdl");
EndpointTemplateInfo templ3 = new EndpointTemplateInfo();
templ3.setTemplateName("endp_template_defaut");
templ3.setEndpointType("default");
EndpointTemplateInfo templ4 = new EndpointTemplateInfo();
templ4.setTemplateName("endp_template_loadbalance");
templ4.setEndpointType("loadbalance");
EndpointTemplateInfo templ5 = new EndpointTemplateInfo();
templ5.setTemplateName("endp_template_failover");
templ5.setEndpointType("failover");
templates[0] = templ1;
templates[1] = templ2;
templates[2] = templ3;