1 23 24 29 30 package com.sun.appserv.management.j2ee; 31 32 import java.util.Set ; 33 34 import com.sun.appserv.management.base.Container; 35 36 38 public interface J2EEApplication extends J2EEDeployedObject, Container 39 { 40 public final static String J2EE_TYPE = J2EETypes.J2EE_APPLICATION; 41 42 48 public String [] getmodules(); 49 50 51 public Set <J2EEModule> getModuleSet(); 52 } 53 | Popular Tags |