1 24 25 package org.objectweb.cjdbc.controller.loadbalancer.policies.errorchecking; 26 27 import java.util.ArrayList ; 28 29 35 public class ErrorCheckingAll extends ErrorCheckingPolicy 36 { 37 38 41 public ErrorCheckingAll() 42 { 43 super(ErrorCheckingPolicy.ALL, 3); 46 } 47 48 51 public ArrayList getBackends(ArrayList backends) 52 throws ErrorCheckingException 53 { 54 return backends; 55 } 56 57 60 public String getInformation() 61 { 62 return "Error checking using all backends"; 63 } 64 } 65 | Popular Tags |