[teiid-commits] teiid SVN: r2265 - in trunk: documentation/caching-guide and 2 other directories.

teiid-commits at lists.jboss.org teiid-commits at lists.jboss.org
Sat Jun 19 07:06:05 EDT 2010


Author: shawkins
Date: 2010-06-19 07:06:05 -0400 (Sat, 19 Jun 2010)
New Revision: 2265

Modified:
   trunk/connectors/translator-ws/src/main/java/org/teiid/translator/ws/WSExecutionFactory.java
   trunk/documentation/caching-guide/pom.xml
   trunk/documentation/client-developers-guide/pom.xml
   trunk/documentation/developer-guide/pom.xml
Log:
fixing poms

Modified: trunk/connectors/translator-ws/src/main/java/org/teiid/translator/ws/WSExecutionFactory.java
===================================================================
--- trunk/connectors/translator-ws/src/main/java/org/teiid/translator/ws/WSExecutionFactory.java	2010-06-19 02:54:56 UTC (rev 2264)
+++ trunk/connectors/translator-ws/src/main/java/org/teiid/translator/ws/WSExecutionFactory.java	2010-06-19 11:06:05 UTC (rev 2265)
@@ -120,45 +120,45 @@
 	public void getMetadata(MetadataFactory metadataFactory,
 			WSConnection conn) throws TranslatorException {
 		Procedure p = metadataFactory.addProcedure("invoke"); //$NON-NLS-1$ 
-		p.setAnnotation("Invokes a webservice that returns an XML result");
+		p.setAnnotation("Invokes a webservice that returns an XML result"); //$NON-NLS-1$
 
 		ProcedureParameter param = metadataFactory.addProcedureParameter("binding", TypeFacility.RUNTIME_NAMES.STRING, Type.In, p); //$NON-NLS-1$
-		param.setAnnotation("The invocation binding (HTTP, SOAP11, SOAP12).  May be set or allowed to default to null to use the default binding.");
+		param.setAnnotation("The invocation binding (HTTP, SOAP11, SOAP12).  May be set or allowed to default to null to use the default binding."); //$NON-NLS-1$
 		param.setNullType(NullType.Nullable);
 
 		param = metadataFactory.addProcedureParameter("action", TypeFacility.RUNTIME_NAMES.STRING, Type.In, p); //$NON-NLS-1$
-		param.setAnnotation("With a SOAP invocation, action sets the SOAPAction.  With HTTP it sets the HTTP Method (GET, POST - default, etc.).");
+		param.setAnnotation("With a SOAP invocation, action sets the SOAPAction.  With HTTP it sets the HTTP Method (GET, POST - default, etc.)."); //$NON-NLS-1$
 		param.setNullType(NullType.Nullable);
 
 		//can be one of string, xml, clob
 		param = metadataFactory.addProcedureParameter("request", TypeFacility.RUNTIME_NAMES.XML, Type.In, p); //$NON-NLS-1$
-		param.setAnnotation("The XML document or root element that represents the request.  If the ExecutionFactory is configured in with a DefaultServiceMode or MESSAGE then SOAP request must contain the entire SOAP message.");
+		param.setAnnotation("The XML document or root element that represents the request.  If the ExecutionFactory is configured in with a DefaultServiceMode or MESSAGE then SOAP request must contain the entire SOAP message."); //$NON-NLS-1$
 		param.setNullType(NullType.Nullable);
 		
 		param = metadataFactory.addProcedureParameter("endpoint", TypeFacility.RUNTIME_NAMES.STRING, Type.In, p); //$NON-NLS-1$
-		param.setAnnotation("The relative or abolute endpoint to use.  May be set or allowed to default to null to use the default endpoint address.");
+		param.setAnnotation("The relative or abolute endpoint to use.  May be set or allowed to default to null to use the default endpoint address."); //$NON-NLS-1$
 		param.setNullType(NullType.Nullable);
 		
 		metadataFactory.addProcedureParameter("result", TypeFacility.RUNTIME_NAMES.XML, Type.ReturnValue, p); //$NON-NLS-1$
 		
-		/*p = metadataFactory.addProcedure("invokeHttp"); //$NON-NLS-1$ 
-		p.setAnnotation("Invokes a webservice that returns an binary result");
+		p = metadataFactory.addProcedure("invokeHttp"); //$NON-NLS-1$ 
+		p.setAnnotation("Invokes a webservice that returns an binary result"); //$NON-NLS-1$
 
 		param = metadataFactory.addProcedureParameter("method", TypeFacility.RUNTIME_NAMES.STRING, Type.In, p); //$NON-NLS-1$
-		param.setAnnotation("Sets the HTTP Method (GET, POST - default, etc.).");
+		param.setAnnotation("Sets the HTTP Method (GET, POST - default, etc.)."); //$NON-NLS-1$
 		param.setNullType(NullType.Nullable);
 
 		//can be one of string, xml, clob
 		param = metadataFactory.addProcedureParameter("request", TypeFacility.RUNTIME_NAMES.OBJECT, Type.In, p); //$NON-NLS-1$
-		param.setAnnotation("The String, XML, BLOB, or CLOB value containing a payload request.");
+		param.setAnnotation("The String, XML, BLOB, or CLOB value containing a payload request."); //$NON-NLS-1$
 		param.setNullType(NullType.Nullable);
 		
 		param = metadataFactory.addProcedureParameter("endpoint", TypeFacility.RUNTIME_NAMES.STRING, Type.In, p); //$NON-NLS-1$
-		param.setAnnotation("The relative or abolute endpoint to use.  May be set or allowed to default to null to use the default endpoint address.");
+		param.setAnnotation("The relative or abolute endpoint to use.  May be set or allowed to default to null to use the default endpoint address."); //$NON-NLS-1$
 		param.setNullType(NullType.Nullable);
 		
 		metadataFactory.addProcedureParameter("result", TypeFacility.RUNTIME_NAMES.BLOB, Type.ReturnValue, p); //$NON-NLS-1$
-		metadataFactory.addProcedureParameter("contentType", TypeFacility.RUNTIME_NAMES.STRING, Type.Out, p); //$NON-NLS-1$*/	
+		metadataFactory.addProcedureParameter("contentType", TypeFacility.RUNTIME_NAMES.STRING, Type.Out, p); //$NON-NLS-1$	
 	}
 
 }

Modified: trunk/documentation/caching-guide/pom.xml
===================================================================
--- trunk/documentation/caching-guide/pom.xml	2010-06-19 02:54:56 UTC (rev 2264)
+++ trunk/documentation/caching-guide/pom.xml	2010-06-19 11:06:05 UTC (rev 2265)
@@ -1,12 +1,13 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <parent>
-    <groupId>org.jboss.teiid.documentation</groupId>
+    <groupId>org.jboss.teiid</groupId>
     <artifactId>documentation</artifactId>
     <version>7.1.0-SNAPSHOT</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <artifactId>caching-guide</artifactId>
+  <groupId>org.jboss.teiid.documentation</groupId>
   <packaging>jdocbook</packaging>
   <name>Teiid Caching Guide</name>
   <description>The Teiid Caching Guide</description>

Modified: trunk/documentation/client-developers-guide/pom.xml
===================================================================
--- trunk/documentation/client-developers-guide/pom.xml	2010-06-19 02:54:56 UTC (rev 2264)
+++ trunk/documentation/client-developers-guide/pom.xml	2010-06-19 11:06:05 UTC (rev 2265)
@@ -1,12 +1,13 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <parent>
-    <groupId>org.jboss.teiid.documentation</groupId>
+    <groupId>org.jboss.teiid</groupId>
     <artifactId>documentation</artifactId>
     <version>7.1.0-SNAPSHOT</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <artifactId>client-developers-guide</artifactId>
+  <groupId>org.jboss.teiid.documentation</groupId>
   <packaging>jdocbook</packaging>
   <name>Teiid Client Developers Guide</name>
   <description>The Client Developers Guide</description>

Modified: trunk/documentation/developer-guide/pom.xml
===================================================================
--- trunk/documentation/developer-guide/pom.xml	2010-06-19 02:54:56 UTC (rev 2264)
+++ trunk/documentation/developer-guide/pom.xml	2010-06-19 11:06:05 UTC (rev 2265)
@@ -1,12 +1,13 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <parent>
-    <groupId>org.jboss.teiid.documentation</groupId>
+    <groupId>org.jboss.teiid</groupId>
     <artifactId>documentation</artifactId>
     <version>7.1.0-SNAPSHOT</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <artifactId>developer-guide</artifactId>
+  <groupId>org.jboss.teiid.documentation</groupId>
   <packaging>jdocbook</packaging>
   <name>Developer's Guide</name>
   <description>The Teiid Developer's Guide</description>



More information about the teiid-commits mailing list