[jboss-cvs] JBossAS SVN: r60030 - trunk/system/src/main/org/jboss/deployers/spi/management.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Jan 26 16:58:10 EST 2007


Author: scott.stark at jboss.org
Date: 2007-01-26 16:58:09 -0500 (Fri, 26 Jan 2007)
New Revision: 60030

Modified:
   trunk/system/src/main/org/jboss/deployers/spi/management/ComponentType.java
Log:
Add ctor for setting type/subtype

Modified: trunk/system/src/main/org/jboss/deployers/spi/management/ComponentType.java
===================================================================
--- trunk/system/src/main/org/jboss/deployers/spi/management/ComponentType.java	2007-01-26 21:23:02 UTC (rev 60029)
+++ trunk/system/src/main/org/jboss/deployers/spi/management/ComponentType.java	2007-01-26 21:58:09 UTC (rev 60030)
@@ -41,6 +41,16 @@
    private String type;
    private String subtype;
 
+   public ComponentType()
+   {
+      
+   }
+   public ComponentType(String type, String subtype)
+   {
+      this.type = type;
+      this.subtype = subtype;
+   }
+
    public String getType()
    {
       return type;




More information about the jboss-cvs-commits mailing list