[teiid-commits] teiid SVN: r2076 - trunk/console/src/main/resources/META-INF.

teiid-commits at lists.jboss.org teiid-commits at lists.jboss.org
Thu Apr 22 18:13:46 EDT 2010


Author: tejones
Date: 2010-04-22 18:13:45 -0400 (Thu, 22 Apr 2010)
New Revision: 2076

Modified:
   trunk/console/src/main/resources/META-INF/rhq-plugin.xml
Log:
Moved transaction operations from VDB to Runtime

Modified: trunk/console/src/main/resources/META-INF/rhq-plugin.xml
===================================================================
--- trunk/console/src/main/resources/META-INF/rhq-plugin.xml	2010-04-22 22:03:05 UTC (rev 2075)
+++ trunk/console/src/main/resources/META-INF/rhq-plugin.xml	2010-04-22 22:13:45 UTC (rev 2076)
@@ -101,6 +101,15 @@
 			</results>
 		</operation>
 
+		<operation name="terminateSession" displayName="Terminate Session"
+			description="Terminate a specified session">
+			<parameters>
+				<c:simple-property displayName="SessionID" name="sessionID"
+					type="long" required="true" description="The ID of the session to terminate" />
+			</parameters>
+		</operation>
+
+
 		<operation name="getRequests" displayName="View current requests"
 			description="Get current requests executing against this Teiid instance">
 			<results>
@@ -145,11 +154,35 @@
 			</parameters>
 		</operation>
 
-		<operation name="terminateSession" displayName="Terminate Session"
-			description="Terminate a specified session">
+		<operation name="getTransactions" displayName="View current transactions"
+			description="Get current transactions executing against this VDB">
+			<results>
+				<c:list-property name="list" displayName="Current Transactions"
+					description="Transactions currently executing against the Teiid system"
+					required="false">
+					<c:map-property name="map">
+						<c:simple-property displayName="Transaction ID"
+							name="getId" type="string"
+							description="The Xid string for GLOBAL transactions or the Transaction id string LOCAL/REQUEST." />
+						<c:simple-property displayName="Session ID"
+							name="getAssociatedSession" type="string"
+							description="Get the session associated with the this transaction. May be null for an unassociated Global transaction." />
+						<c:simple-property displayName="Scope" name="getScope"
+							type="string"
+							description="Get the scope for the transaction.  Will be one of GLOBAL, LOCAL, or REQUEST" />
+						<c:simple-property displayName="Created Time"
+							name="getCreatedTime" type="string" description="The local creation time." />
+					</c:map-property>
+				</c:list-property>
+			</results>
+		</operation>
+
+		<operation name="terminateTransaction" displayName="Terminate Transaction"
+			description="Terminate a specified transaction">
 			<parameters>
-				<c:simple-property displayName="SessionID" name="sessionID"
-					type="long" required="true" description="The ID of the session to terminate" />
+				<c:simple-property displayName="Transaction ID"
+					name="transactionID" type="long" required="true"
+					description="The ID of the transaction to terminate" />
 			</parameters>
 		</operation>
 
@@ -375,37 +408,6 @@
 				</results>
 			</operation>
 
-			<operation name="getTransactions" displayName="View current transactions"
-				description="Get current transactions executing against this VDB">
-				<results>
-					<c:list-property name="list" displayName="Current Transactions"
-						description="Transactions currently executing against the Teiid system"
-						required="false">
-						<c:map-property name="map">
-							<c:simple-property displayName="Transaction ID"
-								name="getId" type="string"
-								description="The Xid string for GLOBAL transactions or the Transaction id string LOCAL/REQUEST." />
-							<c:simple-property displayName="Session ID"
-								name="getAssociatedSession" type="string"
-								description="Get the session associated with the this transaction. May be null for an unassociated Global transaction." />
-							<c:simple-property displayName="Scope" name="getScope"
-								type="string"
-								description="Get the scope for the transaction.  Will be one of GLOBAL, LOCAL, or REQUEST" />
-							<c:simple-property displayName="Created Time"
-								name="getCreatedTime" type="string" description="The local creation time." />
-						</c:map-property>
-					</c:list-property>
-				</results>
-			</operation>
-
-			<operation name="terminateTransaction" displayName="Terminate Transaction"
-				description="Terminate a specified transaction">
-				<parameters>
-					<c:simple-property displayName="Transaction ID" name="transactionID"
-						type="long" required="true" description="The ID of the transaction to terminate" />
-				</parameters>
-			</operation>
-
 			<metric displayName="Status" defaultOn="true" dataType="trait"
 				displayType="summary" category="availability" property="status"
 				description="The status of this VDB" />



More information about the teiid-commits mailing list