1 23 24 29 30 package com.sun.appserv.management.base; 31 32 33 39 public interface SystemInfo extends AMX 40 { 41 42 public static final String J2EE_TYPE = XTypes.SYSTEM_INFO; 43 44 48 public final String CLUSTERS_FEATURE = "SupportsClusters"; 49 50 54 public final String MULTIPLE_SERVERS_FEATURE = "SupportsMultipleServers"; 55 56 57 61 public final String RUNNING_IN_DAS_FEATURE = "RunningInDomainAdminServer"; 62 63 64 65 76 public boolean supportsFeature( String key ); 77 78 83 public String [] getFeatureNames(); 84 85 86 87 88 } 89 | Popular Tags |