KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > aop > deployment > AspectManagerServiceMBean


1 /*
2 * JBoss, Home of Professional Open Source
3 * Copyright 2005, JBoss Inc., and individual contributors as indicated
4 * by the @authors tag. See the copyright.txt in the distribution for a
5 * full listing of individual contributors.
6 *
7 * This is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU Lesser General Public License as
9 * published by the Free Software Foundation; either version 2.1 of
10 * the License, or (at your option) any later version.
11 *
12 * This software is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this software; if not, write to the Free
19 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20 * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
21 */

22 package org.jboss.aop.deployment;
23
24 /**
25  * MBean interface.
26  */

27 public interface AspectManagerServiceMBean extends org.jboss.system.ServiceMBean {
28
29    /**
30     * The temporary directory to which dyn class files are written
31     */

32   java.io.File JavaDoc getTmpClassesDir() ;
33
34    /**
35     * The temporary directory to which dyn class files are written
36     */

37   void setTmpClassesDir(java.io.File JavaDoc tmpClassesDir) ;
38
39    /**
40     * Set the verbosity of aop logging. It doesn't use log4j
41     */

42   boolean getVerbose() ;
43
44    /**
45     * Set the verbosity of aop logging. It doesn't use log4j
46     */

47   void setVerbose(boolean verbose) ;
48
49    /**
50     * Use aop optimizations. Optional just in case there is a bug
51     */

52   boolean getOptimized() ;
53
54    /**
55     * Use aop optimizations. Optional just in case there is a bug
56     */

57   void setOptimized(boolean verbose) ;
58
59   boolean getSuppressTransformationErrors() ;
60
61   void setSuppressTransformationErrors(boolean suppressTransformationErrors) ;
62
63    /**
64     * The temporary directory to which dyn class files are written
65     */

66   boolean getEnableTransformer() ;
67
68    /**
69     * The temporary directory to which dyn class files are written
70     */

71   boolean getEnableLoadtimeWeaving() ;
72
73    /**
74     * The temporary directory to which dyn class files are written
75     */

76   java.lang.String JavaDoc interceptorFactories() ;
77
78    /**
79     * The temporary directory to which dyn class files are written
80     */

81   java.lang.String JavaDoc aspectDefinitions() ;
82
83   java.lang.String JavaDoc introductions() ;
84
85    /**
86     * The temporary directory to which dyn class files are written
87     */

88   java.lang.String JavaDoc stacks() ;
89
90    /**
91     * The temporary directory to which dyn class files are written
92     */

93   java.lang.String JavaDoc bindings() ;
94
95    /**
96     * The temporary directory to which dyn class files are written
97     */

98   java.lang.String JavaDoc registeredClassLoaders() ;
99
100    /**
101     * The temporary directory to which dyn class files are written
102     */

103    void setEnableTransformer(boolean enableTransformer) ;
104    void setEnableLoadtimeWeaving(boolean enableTransformer) ;
105
106    String JavaDoc getExclude();
107
108    void setExclude(String JavaDoc exclude);
109
110    String JavaDoc getInclude();
111
112    void setInclude(String JavaDoc include);
113
114    boolean getPrune();
115
116    void setPrune(boolean prune);
117    
118    String JavaDoc getIgnore();
119
120    void setIgnore(String JavaDoc ignore);
121    
122    String JavaDoc getInstrumentor();
123    
124    void setInstrumentor(String JavaDoc instrumentor);
125    
126    
127 }
128
Popular Tags