1 23 24 25 package com.sun.appserv.management.config; 26 27 import com.sun.appserv.management.base.XTypes; 28 29 30 31 39 public interface EventConfig 40 extends ConfigElement, Description, PropertiesAccess 41 { 42 43 public static final String J2EE_TYPE = XTypes.EVENT_CONFIG; 44 45 48 public String getType(); 49 53 public void setType( String type ); 54 55 60 public boolean getRecordEvent(); 61 62 63 public void setRecordEvent( boolean recordIt ); 64 65 69 public String getLevel(); 70 71 72 public void setLevel( String level ); 73 74 } 75 | Popular Tags |