1 23 24 29 30 package com.sun.appserv.management.config; 31 32 import com.sun.appserv.management.base.XTypes; 33 34 35 38 public interface LifecycleModuleConfig 39 extends NamedConfigElement, DeployedItemRefConfigReferent, 40 PropertiesAccess, Description, Enabled 41 { 42 43 public static final String J2EE_TYPE = XTypes.LIFECYCLE_MODULE_CONFIG; 44 45 public String getClasspath(); 46 public void setClasspath( String classpath ); 47 48 public String getClassname(); 49 public void setClassname( String classname ); 50 51 public String getLoadOrder(); 52 public void setLoadOrder( String order ); 53 54 58 public boolean isFailureFatal(); 59 60 public boolean getIsFailureFatal(); 61 public void setIsFailureFatal( boolean isFatal ); 62 } 63 64 65 66 67 | Popular Tags |