Your browser does not support JavaScript and this site utilizes JavaScript to build content and provide links to additional information. You should either enable JavaScript in your browser settings or use a browser that supports JavaScript in order to take full advantage of this site.
1 22 package org.jboss.aop.deployment; 23 24 27 public interface AspectManagerServiceMBean extends org.jboss.system.ServiceMBean { 28 29 32 java.io.File getTmpClassesDir() ; 33 34 37 void setTmpClassesDir(java.io.File tmpClassesDir) ; 38 39 42 boolean getVerbose() ; 43 44 47 void setVerbose(boolean verbose) ; 48 49 52 boolean getOptimized() ; 53 54 57 void setOptimized(boolean verbose) ; 58 59 boolean getSuppressTransformationErrors() ; 60 61 void setSuppressTransformationErrors(boolean suppressTransformationErrors) ; 62 63 66 boolean getEnableTransformer() ; 67 68 71 boolean getEnableLoadtimeWeaving() ; 72 73 76 java.lang.String interceptorFactories() ; 77 78 81 java.lang.String aspectDefinitions() ; 82 83 java.lang.String introductions() ; 84 85 88 java.lang.String stacks() ; 89 90 93 java.lang.String bindings() ; 94 95 98 java.lang.String registeredClassLoaders() ; 99 100 103 void setEnableTransformer(boolean enableTransformer) ; 104 void setEnableLoadtimeWeaving(boolean enableTransformer) ; 105 106 String getExclude(); 107 108 void setExclude(String exclude); 109 110 String getInclude(); 111 112 void setInclude(String include); 113 114 boolean getPrune(); 115 116 void setPrune(boolean prune); 117 118 String getIgnore(); 119 120 void setIgnore(String ignore); 121 122 String getInstrumentor(); 123 124 void setInstrumentor(String instrumentor); 125 126 127 } 128
| Popular Tags
|