1 23 24 package com.sun.enterprise.server.pluggable; 25 26 import com.sun.enterprise.admin.monitor.stats.lb.LoadBalancerStatsInterface; 27 import com.sun.enterprise.server.pluggable.LBFeatureFactory; 28 29 import java.util.Date ; 30 31 32 33 37 public class PELBFeatureFactoryImpl implements LBFeatureFactory { 38 39 public PELBFeatureFactoryImpl() { 40 } 41 42 public void applyChanges(String configName){ 43 throw new UnsupportedOperationException (); 44 } 45 public void applyChanges(String configName, String lbName){ 46 throw new UnsupportedOperationException (); 47 } 48 public boolean isApplyChangeRequired(String lbConfigName,String lbName){ 49 throw new UnsupportedOperationException (); 50 } 51 public String getLoadBalancerXML(String lbConfigName,String lbName){ 52 throw new UnsupportedOperationException (); 53 } 54 public LoadBalancerStatsInterface getLoadBalancerMonitoringStats(String lbConfigName,String lbName){ 55 throw new UnsupportedOperationException (); 56 } 57 60 public boolean testConnection(String configName, String lbName){ 61 throw new UnsupportedOperationException (); 62 } 63 66 public void resetStats(String configName, String lbName) { 67 throw new UnsupportedOperationException (); 68 } 69 70 } 71 | Popular Tags |