1 23 24 29 30 package com.sun.appserv.management.ext.lb; 31 32 import java.util.Date ; 33 34 import static com.sun.appserv.management.base.XTypes.*; 35 import com.sun.appserv.management.base.AMX; 36 37 41 public interface LoadBalancer extends AMX { 42 43 44 public static final String J2EE_TYPE = LOAD_BALANCER; 45 46 49 public void applyLBChanges(); 50 51 54 public boolean isApplyChangeRequired(); 55 56 60 public String getLoadBalancerXML(); 61 62 65 public Date getLastExported(); 66 67 70 public Date getLastApplied(); 71 72 75 public Date getLastResetTime(); 76 77 80 public void resetStats(); 81 82 85 public boolean testConnection(); 86 87 91 public String getStatus(String instanceName); 92 } 93 | Popular Tags |