1 23 24 29 30 31 package com.sun.enterprise.admin.dottedname; 32 33 34 39 public interface DottedNameServerInfo 40 { 41 public static final class UnavailableException extends Exception 42 { 43 public UnavailableException( Throwable cause) { super( cause.getMessage(), cause ); } 44 public UnavailableException( String msg ) { super( msg ); } 45 } 46 47 public java.util.Set getServerNames() throws UnavailableException; 48 public java.util.Set getConfigNames() throws UnavailableException; 49 public String getConfigNameForServer( String serverName ) throws UnavailableException; 50 public String [] getServerNamesForConfig( String configName ) throws UnavailableException; 51 }; 52 53 54 55 | Popular Tags |