[jbpm-commits] JBoss JBPM SVN: r1649 - in api/branches/tdiesler/modules: dialects/jaxb and 1 other directory.

do-not-reply at jboss.org do-not-reply at jboss.org
Wed Jul 16 10:24:02 EDT 2008


Author: thomas.diesler at jboss.com
Date: 2008-07-16 10:24:02 -0400 (Wed, 16 Jul 2008)
New Revision: 1649

Added:
   api/branches/tdiesler/modules/api/src/main/java/org/jboss/bpm/model/ProcessDialect.java
   api/branches/tdiesler/modules/api/src/main/java/org/jboss/bpm/model/ProcessDialectFactory.java
   api/branches/tdiesler/modules/dialects/jaxb/pom.xml
Modified:
   api/branches/tdiesler/modules/dialects/jaxb/
Log:


Added: api/branches/tdiesler/modules/api/src/main/java/org/jboss/bpm/model/ProcessDialect.java
===================================================================
--- api/branches/tdiesler/modules/api/src/main/java/org/jboss/bpm/model/ProcessDialect.java	                        (rev 0)
+++ api/branches/tdiesler/modules/api/src/main/java/org/jboss/bpm/model/ProcessDialect.java	2008-07-16 14:24:02 UTC (rev 1649)
@@ -0,0 +1,40 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.bpm.model;
+
+
+//$Id$
+
+/**
+ * A Factory for the {@link ProcessBuilder}.
+ * 
+ * @author thomas.diesler at jboss.com
+ * @since 08-Jul-2008
+ */
+public interface ProcessDialect
+{
+  /**
+   * Get a {@link Process} from a dialect specific model.
+   */
+  Process buildProcess(Object processModel);
+  
+}
\ No newline at end of file


Property changes on: api/branches/tdiesler/modules/api/src/main/java/org/jboss/bpm/model/ProcessDialect.java
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF

Added: api/branches/tdiesler/modules/api/src/main/java/org/jboss/bpm/model/ProcessDialectFactory.java
===================================================================
--- api/branches/tdiesler/modules/api/src/main/java/org/jboss/bpm/model/ProcessDialectFactory.java	                        (rev 0)
+++ api/branches/tdiesler/modules/api/src/main/java/org/jboss/bpm/model/ProcessDialectFactory.java	2008-07-16 14:24:02 UTC (rev 1649)
@@ -0,0 +1,48 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.bpm.model;
+
+
+//$Id$
+
+/**
+ * A Factory for the {@link ProcessBuilder}.
+ * 
+ * @author thomas.diesler at jboss.com
+ * @since 08-Jul-2008
+ */
+public class ProcessDialectFactory
+{
+  // Hide the constructor
+  private ProcessDialectFactory()
+  {
+  }
+  
+  /**
+   * Get a {@link ProcessBuilder} for a given process name.
+   */
+  public static ProcessDialect newInstance()
+  {
+    return null;
+  }
+  
+}
\ No newline at end of file


Property changes on: api/branches/tdiesler/modules/api/src/main/java/org/jboss/bpm/model/ProcessDialectFactory.java
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF


Property changes on: api/branches/tdiesler/modules/dialects/jaxb
___________________________________________________________________
Name: svn:ignore
   + target


Added: api/branches/tdiesler/modules/dialects/jaxb/pom.xml
===================================================================
--- api/branches/tdiesler/modules/dialects/jaxb/pom.xml	                        (rev 0)
+++ api/branches/tdiesler/modules/dialects/jaxb/pom.xml	2008-07-16 14:24:02 UTC (rev 1649)
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!-- ====================================================================== -->
+<!--                                                                        -->
+<!--  JBoss, the OpenSource J2EE webOS                                      -->
+<!--                                                                        -->
+<!--  Distributable under LGPL license.                                     -->
+<!--  See terms of license at http://www.gnu.org.                           -->
+<!--                                                                        -->
+<!-- ====================================================================== -->
+
+<!-- $Id$ -->
+<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/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <name>JBoss jBPM - API Dialect JAXB</name>
+  <groupId>org.jboss.jbpm</groupId>
+  <artifactId>jbpm-api-dialect-jaxb</artifactId>
+  <packaging>jar</packaging>
+
+  <!-- Parent -->
+  <parent>
+    <groupId>org.jboss.jbpm</groupId>
+    <artifactId>jbpm-api-root</artifactId>
+    <version>1.0.0-SNAPSHOT</version>
+    <relativePath>../../pom.xml</relativePath>
+  </parent>
+
+  <!-- Dependencies -->
+  <dependencies>
+  
+    <!-- Compile Dependencies -->
+    <dependency>
+      <groupId>org.jboss.jbpm</groupId>
+      <artifactId>jbpm-api</artifactId>
+      <version>${version}</version>
+    </dependency>
+  </dependencies>
+  
+</project>
\ No newline at end of file


Property changes on: api/branches/tdiesler/modules/dialects/jaxb/pom.xml
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF




More information about the jbpm-commits mailing list