[jboss-cvs] JBossAS SVN: r78672 - projects/aop/trunk/asintegration/src/main/org/jboss/aop/deployment.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Sep 18 07:44:02 EDT 2008


Author: kabir.khan at jboss.com
Date: 2008-09-18 07:44:02 -0400 (Thu, 18 Sep 2008)
New Revision: 78672

Added:
   projects/aop/trunk/asintegration/src/main/org/jboss/aop/deployment/AbstractAspectManagerServiceMBean.java
Modified:
   projects/aop/trunk/asintegration/src/main/org/jboss/aop/deployment/AbstractAspectManagerService.java
Log:
[JBAS-5970] Add missing file and tidy up

Modified: projects/aop/trunk/asintegration/src/main/org/jboss/aop/deployment/AbstractAspectManagerService.java
===================================================================
--- projects/aop/trunk/asintegration/src/main/org/jboss/aop/deployment/AbstractAspectManagerService.java	2008-09-18 11:36:51 UTC (rev 78671)
+++ projects/aop/trunk/asintegration/src/main/org/jboss/aop/deployment/AbstractAspectManagerService.java	2008-09-18 11:44:02 UTC (rev 78672)
@@ -321,23 +321,4 @@
    {
       delegate.setInstrumentor(instrumentor);
    }
-
-//   @Override
-//   public void postRegister(Boolean done)
-//   {
-//      super.postRegister(done);
-//      if (registerHappensAfterStart)
-//      {
-//         try
-//         {
-//            super.create();
-//            super.start();
-//         }
-//         catch (Exception e)
-//         {
-//            throw new RuntimeException(e);
-//         }
-//      }
-//   }
-   
 }

Added: projects/aop/trunk/asintegration/src/main/org/jboss/aop/deployment/AbstractAspectManagerServiceMBean.java
===================================================================
--- projects/aop/trunk/asintegration/src/main/org/jboss/aop/deployment/AbstractAspectManagerServiceMBean.java	                        (rev 0)
+++ projects/aop/trunk/asintegration/src/main/org/jboss/aop/deployment/AbstractAspectManagerServiceMBean.java	2008-09-18 11:44:02 UTC (rev 78672)
@@ -0,0 +1,131 @@
+/*
+* JBoss, Home of Professional Open Source
+* Copyright 2005, JBoss Inc., and individual contributors as indicated
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* This is free software; you can redistribute it and/or modify it
+* under the terms of the GNU Lesser General Public License as
+* published by the Free Software Foundation; either version 2.1 of
+* the License, or (at your option) any later version.
+*
+* This software is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* Lesser General Public License for more details.
+*
+* You should have received a copy of the GNU Lesser General Public
+* License along with this software; if not, write to the Free
+* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+*/
+package org.jboss.aop.deployment;
+
+/**
+ * MBean interface.
+ */
+public interface AbstractAspectManagerServiceMBean extends org.jboss.system.ServiceMBean {
+
+   /**
+    * The temporary directory to which dyn class files are written
+    */
+  java.io.File getTmpClassesDir() ;
+
+   /**
+    * The temporary directory to which dyn class files are written
+    */
+  void setTmpClassesDir(java.io.File tmpClassesDir) ;
+
+   /**
+    * Set the verbosity of aop logging. It doesn't use log4j
+    */
+  boolean getVerbose() ;
+
+   /**
+    * Set the verbosity of aop logging. It doesn't use log4j
+    */
+  void setVerbose(boolean verbose) ;
+
+   /**
+    * Use aop optimizations. Optional just in case there is a bug
+    */
+  boolean getOptimized() ;
+
+   /**
+    * Use aop optimizations. Optional just in case there is a bug
+    */
+  void setOptimized(boolean verbose) ;
+
+  boolean getSuppressTransformationErrors() ;
+
+  void setSuppressTransformationErrors(boolean suppressTransformationErrors) ;
+
+   /**
+    * The temporary directory to which dyn class files are written
+    */
+  boolean getEnableTransformer() ;
+
+   /**
+    * The temporary directory to which dyn class files are written
+    */
+  boolean getEnableLoadtimeWeaving() ;
+
+   /**
+    * The temporary directory to which dyn class files are written
+    */
+  java.lang.String interceptorFactories() ;
+
+   /**
+    * The temporary directory to which dyn class files are written
+    */
+  java.lang.String aspectDefinitions() ;
+
+  java.lang.String introductions() ;
+
+   /**
+    * The temporary directory to which dyn class files are written
+    */
+  java.lang.String stacks() ;
+
+   /**
+    * The temporary directory to which dyn class files are written
+    */
+  java.lang.String bindings() ;
+
+   /**
+    * The temporary directory to which dyn class files are written
+    */
+  java.lang.String registeredClassLoaders() ;
+
+   /**
+    * The temporary directory to which dyn class files are written
+    */
+   void setEnableTransformer(boolean enableTransformer) ;
+   void setEnableLoadtimeWeaving(boolean enableTransformer) ;
+
+   String getExclude();
+
+   void setExclude(String exclude);
+
+   String getInclude();
+
+   void setInclude(String include);
+   
+   String getIncludedInvisibleAnnotations();
+   
+   void setIncludedInvisibleAnnotations(String ia);
+
+   boolean getPrune();
+
+   void setPrune(boolean prune);
+   
+   String getIgnore();
+
+   void setIgnore(String ignore);
+   
+   String getInstrumentor();
+   
+   void setInstrumentor(String instrumentor);
+   
+   
+}




More information about the jboss-cvs-commits mailing list