Author: vhalbert(a)redhat.com
Date: 2009-06-24 18:13:10 -0400 (Wed, 24 Jun 2009)
New Revision: 1084
Modified:
trunk/client/src/main/java/com/metamatrix/admin/objects/MMResource.java
Log:
Teiid-654 - Removing the use of the resource connection pool, this feature is no longer
supported.
Modified: trunk/client/src/main/java/com/metamatrix/admin/objects/MMResource.java
===================================================================
--- trunk/client/src/main/java/com/metamatrix/admin/objects/MMResource.java 2009-06-24
20:36:17 UTC (rev 1083)
+++ trunk/client/src/main/java/com/metamatrix/admin/objects/MMResource.java 2009-06-24
22:13:10 UTC (rev 1084)
@@ -31,7 +31,6 @@
public class MMResource extends MMAdminObject implements Resource {
private String resourceType;
- private String connectionPoolIdentifier;
/**
* Constructor
@@ -49,7 +48,6 @@
StringBuffer result = new StringBuffer();
result.append(AdminPlugin.Util.getString("MMResource.MMResource")).append(getIdentifier());
//$NON-NLS-1$
result.append(AdminPlugin.Util.getString("MMResource.Type")).append(resourceType);
//$NON-NLS-1$
-
result.append(AdminPlugin.Util.getString("MMResource.ConnectionPoolIdentifier")).append(connectionPoolIdentifier);
//$NON-NLS-1$
result.append(AdminPlugin.Util.getString("MMResource.Created")).append(getCreatedDate());
//$NON-NLS-1$
result.append(AdminPlugin.Util.getString("MMResource.Created_By")).append(getCreatedBy());
//$NON-NLS-1$
result.append(AdminPlugin.Util.getString("MMResource.Updated")).append(getLastChangedDate());
//$NON-NLS-1$
@@ -61,30 +59,6 @@
/**
- * Return the Identifier for the Connection Pool Assigned
- *
- * @return Returns the String Identifier for the Assigned Connection Pool.
- * @since 4.3
- */
- public String getConnectionPoolIdentifier() {
- return this.connectionPoolIdentifier;
- }
-
-
-
- /**
- * Set the Connection Pool Assigned Identifier
- *
- * @param connectionPoolIdentifier The Identifier of the Connection Pool to set.
- * @since 4.3
- */
- public void setConnectionPoolIdentifier(String connectionPoolIdentifier) {
- this.connectionPoolIdentifier = connectionPoolIdentifier;
- }
-
-
-
- /**
* Get the Resource Type for this Resource
* @return Returns the String value of the Resource Type for this Resouce.
* @since 4.3