[teiid-commits] teiid SVN: r2481 - branches/7.1.x/adminshell/src/main/java/org/teiid/adminshell.

teiid-commits at lists.jboss.org teiid-commits at lists.jboss.org
Thu Aug 19 11:30:38 EDT 2010


Author: shawkins
Date: 2010-08-19 11:30:38 -0400 (Thu, 19 Aug 2010)
New Revision: 2481

Modified:
   branches/7.1.x/adminshell/src/main/java/org/teiid/adminshell/AdminShell.java
Log:
TEIID-1218 fixing adminshell help text

Modified: branches/7.1.x/adminshell/src/main/java/org/teiid/adminshell/AdminShell.java
===================================================================
--- branches/7.1.x/adminshell/src/main/java/org/teiid/adminshell/AdminShell.java	2010-08-18 14:07:14 UTC (rev 2480)
+++ branches/7.1.x/adminshell/src/main/java/org/teiid/adminshell/AdminShell.java	2010-08-19 15:30:38 UTC (rev 2481)
@@ -154,11 +154,11 @@
 		return getAdmin().getCacheTypes();
 	}
 	
-	@Doc(text = "Cancel a request")
+	@Doc(text = "Change a VDB Connection Type")
 	public static void changeVDBConnectionType(
 			@Doc(text = "vdb name") String vdbName, 
 			@Doc(text = "vdb version") int vdbVersion,
-			@Doc(text = "Connection Type") String type)
+			@Doc(text = "Connection Type (NONE, BY_VERSION, or ANY") String type)
 			throws AdminException {
 		getAdmin().changeVDBConnectionType(vdbName, vdbVersion, ConnectionType.valueOf(type));
 	}



More information about the teiid-commits mailing list