[teiid-commits] teiid SVN: r753 - branches/remove_psc/common-internal/src/main/java/com/metamatrix/common/config/api.

teiid-commits at lists.jboss.org teiid-commits at lists.jboss.org
Fri Apr 10 22:54:02 EDT 2009


Author: vhalbert at redhat.com
Date: 2009-04-10 22:54:02 -0400 (Fri, 10 Apr 2009)
New Revision: 753

Modified:
   branches/remove_psc/common-internal/src/main/java/com/metamatrix/common/config/api/SharedResource.java
Log:
Teiid 323 - refactured the xml configuration classes to simplify importing/exporting and to clean up the removal of psc, resourcepool and product type related info

Modified: branches/remove_psc/common-internal/src/main/java/com/metamatrix/common/config/api/SharedResource.java
===================================================================
--- branches/remove_psc/common-internal/src/main/java/com/metamatrix/common/config/api/SharedResource.java	2009-04-11 02:42:44 UTC (rev 752)
+++ branches/remove_psc/common-internal/src/main/java/com/metamatrix/common/config/api/SharedResource.java	2009-04-11 02:54:02 UTC (rev 753)
@@ -34,34 +34,13 @@
  */
 public interface SharedResource extends ComponentObject {
 
-    
-  
 
-	/** 
-     * The JDBC_RESOURCE_TYPE resource is the generic resource used for 
-     * majority of the internal resources
-     */  
-//    public static final String JDBC_COMPONENT_TYPE_NAME = "JDBC Resource Type";    //$NON-NLS-1$
-
-//	public static final ComponentTypeID JDBC_COMPONENT_TYPE_ID = new ComponentTypeID(JDBC_COMPONENT_TYPE_NAME);
-
-	/** The JMS_RESOURCE_TYPE resource is used to define jms resources. */  
- //   public static final String JMS_COMPONENT_TYPE_NAME = "JMS Resource Type";    //$NON-NLS-1$
-
-
-//	public static final ComponentTypeID JMS_COMPONENT_TYPE_ID = new ComponentTypeID(JMS_COMPONENT_TYPE_NAME);
-
 	/** The MISC_RESOURCE_TYPE resource is used to define resources that need any specific type association. */  
     public static final String MISC_COMPONENT_TYPE_NAME = "Miscellaneous Resource Type";    //$NON-NLS-1$
 
 
-//	public static final ComponentTypeID MISC_COMPONENT_TYPE_ID = new ComponentTypeID(MISC_COMPONENT_TYPE_NAME);
+	public static final ComponentTypeID MISC_COMPONENT_TYPE_ID = new ComponentTypeID(MISC_COMPONENT_TYPE_NAME);
 
-	/** The SEARCHBASE_RESOURCE_TYPE resource is used to define external searchbase resources. */  
- //   public static final String SEARCHBASE_COMPONENT_TYPE_NAME = "Searchbase Resource Type";    //$NON-NLS-1$
-
-
-//	public static final ComponentTypeID SEARCHBASE_COMPONENT_TYPE_ID = new ComponentTypeID(SEARCHBASE_COMPONENT_TYPE_NAME);
     
 
 




More information about the teiid-commits mailing list