1 23 package com.sun.appserv.management.j2ee; 24 25 import java.util.Map ; 26 import java.util.Set ; 27 28 import javax.management.ObjectName ; 29 30 import com.sun.appserv.management.base.Container; 31 32 33 35 public interface J2EEServer extends J2EELogicalServer, Container 36 { 37 public final static String J2EE_TYPE = J2EETypes.J2EE_SERVER; 38 39 43 public void restart(); 44 45 51 public String [] getdeployedObjects(); 52 53 66 public <T extends J2EEDeployedObject> Set <T> getDeployedObjectsSet(); 67 68 75 public String [] getjavaVMs(); 76 77 81 public JVM getJVM(); 82 83 89 public String [] getresources(); 90 91 107 public <T extends J2EEResource> Set <T> getResourcesSet(); 108 109 115 public String getserverVendor(); 116 117 123 public String getserverVersion(); 124 125 126 130 public boolean getRestartRequired(); 131 } 132 133 134 135 | Popular Tags |