Retrieves a list of application connections that satisfy the given filter. The return result is paginated.
PaginationResult<ApplicationConnectionVO> getApplicationConnections(AppConnection_FilterSoftVO filter, Long offset, Integer length) throws SUPAdminException;
If successful, returns an object of the specified type (can be null). If unsuccessful, returns SUPAdminException.
AppConnectionFilterSortVO filter = new AppConnectionFilterSortVO();
FilterExpression<APPCONNECTION> fe = new FilterExpression< APPCONNECTION >();
FilterExpression< APPCONNECTION > fe1 = fe.eq(APPCONNECTION.DOMAIN, "default");
filter.setFilterExpression(fe1);
filter.setSortField(APPCONNECTION.APPLICATION_ID);
PaginationResult<ApplicationConnectionVO> result = app
.getApplicationConnections(filter, 0L, 10);
for (ApplicationConnectionVO appConn : result.getItems()) {
System.out.println(appConn.getId());
}