1 23 package com.sun.enterprise.management.support.oldconfig; 24 25 import javax.management.ObjectName ; 26 import javax.management.AttributeList ; 27 28 public interface OldLbConfigs 29 { 30 public ObjectName createLbConfig(AttributeList attrs); 31 public boolean destroyConfigElement(); 32 public ObjectName [] getLbConfig(); 33 public ObjectName getLbConfigByName( final String key ); 34 public void removeLbConfigByName( final String key ); 35 } 36 | Popular Tags |