[teiid-commits] teiid SVN: r1081 - trunk/embedded/src/main/java/com/metamatrix/dqp/embedded/admin.

teiid-commits at lists.jboss.org teiid-commits at lists.jboss.org
Wed Jun 24 16:34:31 EDT 2009


Author: vhalbert at redhat.com
Date: 2009-06-24 16:34:31 -0400 (Wed, 24 Jun 2009)
New Revision: 1081

Modified:
   trunk/embedded/src/main/java/com/metamatrix/dqp/embedded/admin/BaseAdmin.java
Log:
Teiid 653 - removed the deployed attribute from the admin objects

Modified: trunk/embedded/src/main/java/com/metamatrix/dqp/embedded/admin/BaseAdmin.java
===================================================================
--- trunk/embedded/src/main/java/com/metamatrix/dqp/embedded/admin/BaseAdmin.java	2009-06-24 20:34:17 UTC (rev 1080)
+++ trunk/embedded/src/main/java/com/metamatrix/dqp/embedded/admin/BaseAdmin.java	2009-06-24 20:34:31 UTC (rev 1081)
@@ -301,7 +301,6 @@
         binding.setConnectorTypeName(src.getComponentTypeID().getFullName());
         binding.setCreated(src.getCreatedDate());
         binding.setCreatedBy(src.getCreatedBy());
-        binding.setDeployed(src.isEnabled());
         binding.setDescription(src.getDescription());
         binding.setEnabled(src.isEnabled());
         binding.setLastUpdated(src.getLastChangedDate());
@@ -340,7 +339,6 @@
         MMConnectorType type = new MMConnectorType(new String[] {src.getName()});
         type.setCreated(src.getCreatedDate());
         type.setCreatedBy(src.getCreatedBy());
-        type.setDeployed(src.isDeployable());
         type.setEnabled(true);
         type.setLastUpdated(src.getLastChangedDate());
         type.setRegistered(true);
@@ -358,7 +356,6 @@
         MMVDB vdb = new MMVDB(new String[] {src.getName(), src.getVersion()});
         vdb.setCreated(src.getDateCreated());
         vdb.setCreatedBy(src.getCreatedBy());
-        vdb.setDeployed(src.isActiveStatus());
         vdb.setEnabled(src.isActiveStatus());
         vdb.setLastUpdated(src.getDateCreated());
         vdb.setLastUpdatedBy(src.getCreatedBy());
@@ -380,7 +377,6 @@
         MMModel model = new MMModel(new String[] {src.getName()});
         model.setCreated(vdb.getDateCreated());
         model.setCreatedBy(vdb.getCreatedBy());
-        model.setDeployed(vdb.isActiveStatus());
         model.setEnabled(vdb.isActiveStatus());
         model.setLastUpdated(vdb.getDateCreated());
         model.setLastUpdatedBy(vdb.getCreatedBy());




More information about the teiid-commits mailing list