Retrieves a list of application connection templates.
PaginationResult<ApplicationConnectionTemplateVO> getApplicationConnectionTemplates(AppConnectionTemplateFilterSortVO filter, Long offset, Integer length) throws SUPAdminException;
If successful, returns an object of the specified type (can be null). If unsuccessful, returns SUPAdminException.
AppConnectionTemplateFilterSortVO filter = new AppConnectionTemplateFilterSortVO();
FilterExpression<APPCONNECTION_TEMPLATE> fe = new FilterExpression<APPCONNECTION_TEMPLATE>();
FilterExpression<APPCONNECTION_TEMPLATE> fe1 = fe.eq(APPCONNECTION_TEMPLATE.DOMAIN, "default");
FilterExpression<APPCONNECTION_TEMPLATE> fe2 = fe.eq(APPCONNECTION_TEMPLATE.SECURITY_CONF, "admin");
fe = fe1.and(fe2);
filter.setFilterExpression(fe);
PaginationResult<ApplicationConnectionTemplateVO> result = app
.getApplicationConnectionTemplates(filter, 0L, 10);
for (ApplicationConnectionTemplateVO appConnT : result.getItems()) {
System.out.println(appConnT.getName());
}