[jbpm-commits] JBoss JBPM SVN: r2513 - in projects/spec/trunk: modules/api and 8 other directories.

do-not-reply at jboss.org do-not-reply at jboss.org
Thu Oct 9 02:02:29 EDT 2008


Author: thomas.diesler at jboss.com
Date: 2008-10-09 02:02:28 -0400 (Thu, 09 Oct 2008)
New Revision: 2513

Added:
   projects/spec/trunk/modules/api/src/main/java/org/jbpm/api/model/InputSet.java
   projects/spec/trunk/modules/api/src/main/java/org/jbpm/api/model/OutputSet.java
   projects/spec/trunk/modules/api/src/main/java/org/jbpm/api/model/Participant.java
Removed:
   projects/spec/trunk/modules/api/src/main/java/org/jbpm/api/model/internal/InputSet.java
   projects/spec/trunk/modules/api/src/main/java/org/jbpm/api/model/internal/OutputSet.java
   projects/spec/trunk/modules/api/src/main/java/org/jbpm/api/model/internal/Participant.java
Modified:
   projects/spec/trunk/modules/api/pom.xml
   projects/spec/trunk/modules/api/src/main/java/org/jbpm/api/model/Message.java
   projects/spec/trunk/modules/api/src/main/java/org/jbpm/api/model/Task.java
   projects/spec/trunk/modules/api/src/main/java/org/jbpm/api/runtime/Token.java
   projects/spec/trunk/modules/api/src/main/java/org/jbpm/api/service/MessageService.java
   projects/spec/trunk/modules/cts/pom.xml
   projects/spec/trunk/modules/impl/pom.xml
   projects/spec/trunk/modules/impl/src/main/java/org/jbpm/ri/model/InputSetImpl.java
   projects/spec/trunk/modules/impl/src/main/java/org/jbpm/ri/model/MessageImpl.java
   projects/spec/trunk/modules/impl/src/main/java/org/jbpm/ri/model/OutputSetImpl.java
   projects/spec/trunk/modules/impl/src/main/java/org/jbpm/ri/model/ParticipantImpl.java
   projects/spec/trunk/modules/impl/src/main/java/org/jbpm/ri/model/TaskImpl.java
   projects/spec/trunk/modules/impl/src/main/java/org/jbpm/ri/runtime/DelegatingToken.java
   projects/spec/trunk/modules/impl/src/main/java/org/jbpm/ri/runtime/MessageSender.java
   projects/spec/trunk/modules/impl/src/main/java/org/jbpm/ri/runtime/MutableToken.java
   projects/spec/trunk/modules/impl/src/main/java/org/jbpm/ri/runtime/TokenImpl.java
   projects/spec/trunk/pom.xml
Log:
Use jBPM Spec

Modified: projects/spec/trunk/modules/api/pom.xml
===================================================================
--- projects/spec/trunk/modules/api/pom.xml	2008-10-09 05:35:01 UTC (rev 2512)
+++ projects/spec/trunk/modules/api/pom.xml	2008-10-09 06:02:28 UTC (rev 2513)
@@ -12,7 +12,7 @@
 <!-- $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 BPM Spec - API</name>
+  <name>jBPM Spec - API</name>
   <groupId>org.jbpm.jbpm4</groupId>
   <artifactId>jbpm-spec-api</artifactId>
   <packaging>jar</packaging>

Copied: projects/spec/trunk/modules/api/src/main/java/org/jbpm/api/model/InputSet.java (from rev 2510, projects/spec/trunk/modules/api/src/main/java/org/jbpm/api/model/internal/InputSet.java)
===================================================================
--- projects/spec/trunk/modules/api/src/main/java/org/jbpm/api/model/InputSet.java	                        (rev 0)
+++ projects/spec/trunk/modules/api/src/main/java/org/jbpm/api/model/InputSet.java	2008-10-09 06:02:28 UTC (rev 2513)
@@ -0,0 +1,37 @@
+/*
+ * 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.jbpm.api.model;
+
+import org.jbpm.api.model.internal.PropertySupport;
+
+
+//$Id$
+
+/**
+ * An InputSet, which is used in the definition of common attributes for Activities and for attributes of a Process
+ * 
+ * @author thomas.diesler at jboss.com
+ * @since 21-Jul-2008
+ */
+public interface InputSet extends PropertySupport
+{
+}

Modified: projects/spec/trunk/modules/api/src/main/java/org/jbpm/api/model/Message.java
===================================================================
--- projects/spec/trunk/modules/api/src/main/java/org/jbpm/api/model/Message.java	2008-10-09 05:35:01 UTC (rev 2512)
+++ projects/spec/trunk/modules/api/src/main/java/org/jbpm/api/model/Message.java	2008-10-09 06:02:28 UTC (rev 2513)
@@ -23,7 +23,6 @@
 
 import java.io.Serializable;
 
-import org.jbpm.api.model.internal.Participant;
 import org.jbpm.api.model.internal.PropertySupport;
 
 

Copied: projects/spec/trunk/modules/api/src/main/java/org/jbpm/api/model/OutputSet.java (from rev 2510, projects/spec/trunk/modules/api/src/main/java/org/jbpm/api/model/internal/OutputSet.java)
===================================================================
--- projects/spec/trunk/modules/api/src/main/java/org/jbpm/api/model/OutputSet.java	                        (rev 0)
+++ projects/spec/trunk/modules/api/src/main/java/org/jbpm/api/model/OutputSet.java	2008-10-09 06:02:28 UTC (rev 2513)
@@ -0,0 +1,37 @@
+/*
+ * 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.jbpm.api.model;
+
+import org.jbpm.api.model.internal.PropertySupport;
+
+
+//$Id$
+
+/**
+ * An OuputSet, which is used in the definition of common attributes for Activities and for attributes of a Process
+ * 
+ * @author thomas.diesler at jboss.com
+ * @since 21-Jul-2008
+ */
+public interface OutputSet extends PropertySupport
+{
+}

Copied: projects/spec/trunk/modules/api/src/main/java/org/jbpm/api/model/Participant.java (from rev 2510, projects/spec/trunk/modules/api/src/main/java/org/jbpm/api/model/internal/Participant.java)
===================================================================
--- projects/spec/trunk/modules/api/src/main/java/org/jbpm/api/model/Participant.java	                        (rev 0)
+++ projects/spec/trunk/modules/api/src/main/java/org/jbpm/api/model/Participant.java	2008-10-09 06:02:28 UTC (rev 2513)
@@ -0,0 +1,43 @@
+/*
+ * 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.jbpm.api.model;
+
+//$Id$
+
+import java.io.Serializable;
+
+import javax.management.ObjectName;
+
+
+/**
+ * A Participant, which is used in the definition of attributes for a Pool, {@link Message}, and WebService
+ * 
+ * @author thomas.diesler at jboss.com
+ * @since 21-Jul-2008
+ */
+public interface Participant extends Serializable
+{
+  /**
+   * The name of this participant
+   */
+  ObjectName getName();
+}

Modified: projects/spec/trunk/modules/api/src/main/java/org/jbpm/api/model/Task.java
===================================================================
--- projects/spec/trunk/modules/api/src/main/java/org/jbpm/api/model/Task.java	2008-10-09 05:35:01 UTC (rev 2512)
+++ projects/spec/trunk/modules/api/src/main/java/org/jbpm/api/model/Task.java	2008-10-09 06:02:28 UTC (rev 2513)
@@ -25,8 +25,6 @@
 
 import java.util.List;
 
-import org.jbpm.api.model.internal.InputSet;
-import org.jbpm.api.model.internal.OutputSet;
 
 /**
  * A Task is an Atomic Activity that is included within a Process.

Deleted: projects/spec/trunk/modules/api/src/main/java/org/jbpm/api/model/internal/InputSet.java
===================================================================
--- projects/spec/trunk/modules/api/src/main/java/org/jbpm/api/model/internal/InputSet.java	2008-10-09 05:35:01 UTC (rev 2512)
+++ projects/spec/trunk/modules/api/src/main/java/org/jbpm/api/model/internal/InputSet.java	2008-10-09 06:02:28 UTC (rev 2513)
@@ -1,35 +0,0 @@
-/*
- * 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.jbpm.api.model.internal;
-
-
-//$Id$
-
-/**
- * An InputSet, which is used in the definition of common attributes for Activities and for attributes of a Process
- * 
- * @author thomas.diesler at jboss.com
- * @since 21-Jul-2008
- */
-public interface InputSet extends PropertySupport
-{
-}

Deleted: projects/spec/trunk/modules/api/src/main/java/org/jbpm/api/model/internal/OutputSet.java
===================================================================
--- projects/spec/trunk/modules/api/src/main/java/org/jbpm/api/model/internal/OutputSet.java	2008-10-09 05:35:01 UTC (rev 2512)
+++ projects/spec/trunk/modules/api/src/main/java/org/jbpm/api/model/internal/OutputSet.java	2008-10-09 06:02:28 UTC (rev 2513)
@@ -1,35 +0,0 @@
-/*
- * 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.jbpm.api.model.internal;
-
-
-//$Id$
-
-/**
- * An OuputSet, which is used in the definition of common attributes for Activities and for attributes of a Process
- * 
- * @author thomas.diesler at jboss.com
- * @since 21-Jul-2008
- */
-public interface OutputSet extends PropertySupport
-{
-}

Deleted: projects/spec/trunk/modules/api/src/main/java/org/jbpm/api/model/internal/Participant.java
===================================================================
--- projects/spec/trunk/modules/api/src/main/java/org/jbpm/api/model/internal/Participant.java	2008-10-09 05:35:01 UTC (rev 2512)
+++ projects/spec/trunk/modules/api/src/main/java/org/jbpm/api/model/internal/Participant.java	2008-10-09 06:02:28 UTC (rev 2513)
@@ -1,44 +0,0 @@
-/*
- * 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.jbpm.api.model.internal;
-
-//$Id$
-
-import java.io.Serializable;
-
-import javax.management.ObjectName;
-
-import org.jbpm.api.model.Message;
-
-/**
- * A Participant, which is used in the definition of attributes for a Pool, {@link Message}, and WebService
- * 
- * @author thomas.diesler at jboss.com
- * @since 21-Jul-2008
- */
-public interface Participant extends Serializable
-{
-  /**
-   * The name of this participant
-   */
-  ObjectName getName();
-}

Modified: projects/spec/trunk/modules/api/src/main/java/org/jbpm/api/runtime/Token.java
===================================================================
--- projects/spec/trunk/modules/api/src/main/java/org/jbpm/api/runtime/Token.java	2008-10-09 05:35:01 UTC (rev 2512)
+++ projects/spec/trunk/modules/api/src/main/java/org/jbpm/api/runtime/Token.java	2008-10-09 06:02:28 UTC (rev 2513)
@@ -23,9 +23,9 @@
 
 // $Id$
 
+import org.jbpm.api.model.InputSet;
+import org.jbpm.api.model.OutputSet;
 import org.jbpm.api.model.SequenceFlow;
-import org.jbpm.api.model.internal.InputSet;
-import org.jbpm.api.model.internal.OutputSet;
 
 /**
  * A Token is a descriptive construct used to describe how the flow of a Process will proceed at runtime.

Modified: projects/spec/trunk/modules/api/src/main/java/org/jbpm/api/service/MessageService.java
===================================================================
--- projects/spec/trunk/modules/api/src/main/java/org/jbpm/api/service/MessageService.java	2008-10-09 05:35:01 UTC (rev 2512)
+++ projects/spec/trunk/modules/api/src/main/java/org/jbpm/api/service/MessageService.java	2008-10-09 06:02:28 UTC (rev 2513)
@@ -36,9 +36,9 @@
 import org.jbpm.api.model.Event;
 import org.jbpm.api.model.Message;
 import org.jbpm.api.model.Node;
+import org.jbpm.api.model.Participant;
 import org.jbpm.api.model.Process;
 import org.jbpm.api.model.Task;
-import org.jbpm.api.model.internal.Participant;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 

Modified: projects/spec/trunk/modules/cts/pom.xml
===================================================================
--- projects/spec/trunk/modules/cts/pom.xml	2008-10-09 05:35:01 UTC (rev 2512)
+++ projects/spec/trunk/modules/cts/pom.xml	2008-10-09 06:02:28 UTC (rev 2513)
@@ -13,7 +13,7 @@
 <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 BPM Spec - CTS</name>
+  <name>jBPM Spec - CTS</name>
   <groupId>org.jbpm.jbpm4</groupId>
   <artifactId>jbpm-spec-cts</artifactId>
   <packaging>jar</packaging>

Modified: projects/spec/trunk/modules/impl/pom.xml
===================================================================
--- projects/spec/trunk/modules/impl/pom.xml	2008-10-09 05:35:01 UTC (rev 2512)
+++ projects/spec/trunk/modules/impl/pom.xml	2008-10-09 06:02:28 UTC (rev 2513)
@@ -14,7 +14,7 @@
 <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 BPM Spec - RI</name>
+  <name>jBPM Spec - RI</name>
   <groupId>org.jbpm.jbpm4</groupId>
   <artifactId>jbpm-spec-ri</artifactId>
   <packaging>jar</packaging>

Modified: projects/spec/trunk/modules/impl/src/main/java/org/jbpm/ri/model/InputSetImpl.java
===================================================================
--- projects/spec/trunk/modules/impl/src/main/java/org/jbpm/ri/model/InputSetImpl.java	2008-10-09 05:35:01 UTC (rev 2512)
+++ projects/spec/trunk/modules/impl/src/main/java/org/jbpm/ri/model/InputSetImpl.java	2008-10-09 06:02:28 UTC (rev 2513)
@@ -28,8 +28,8 @@
 
 import javax.persistence.Transient;
 
+import org.jbpm.api.model.InputSet;
 import org.jbpm.api.model.Property;
-import org.jbpm.api.model.internal.InputSet;
 
 
 /**

Modified: projects/spec/trunk/modules/impl/src/main/java/org/jbpm/ri/model/MessageImpl.java
===================================================================
--- projects/spec/trunk/modules/impl/src/main/java/org/jbpm/ri/model/MessageImpl.java	2008-10-09 05:35:01 UTC (rev 2512)
+++ projects/spec/trunk/modules/impl/src/main/java/org/jbpm/ri/model/MessageImpl.java	2008-10-09 06:02:28 UTC (rev 2513)
@@ -36,8 +36,8 @@
 import javax.persistence.OneToMany;
 
 import org.jbpm.api.model.Message;
+import org.jbpm.api.model.Participant;
 import org.jbpm.api.model.Property;
-import org.jbpm.api.model.internal.Participant;
 
 /**
  * A Message, which is used in the definition of attributes for a @{link StartEvent},

Modified: projects/spec/trunk/modules/impl/src/main/java/org/jbpm/ri/model/OutputSetImpl.java
===================================================================
--- projects/spec/trunk/modules/impl/src/main/java/org/jbpm/ri/model/OutputSetImpl.java	2008-10-09 05:35:01 UTC (rev 2512)
+++ projects/spec/trunk/modules/impl/src/main/java/org/jbpm/ri/model/OutputSetImpl.java	2008-10-09 06:02:28 UTC (rev 2513)
@@ -28,8 +28,8 @@
 
 import javax.persistence.Transient;
 
+import org.jbpm.api.model.OutputSet;
 import org.jbpm.api.model.Property;
-import org.jbpm.api.model.internal.OutputSet;
 
 
 /**

Modified: projects/spec/trunk/modules/impl/src/main/java/org/jbpm/ri/model/ParticipantImpl.java
===================================================================
--- projects/spec/trunk/modules/impl/src/main/java/org/jbpm/ri/model/ParticipantImpl.java	2008-10-09 05:35:01 UTC (rev 2512)
+++ projects/spec/trunk/modules/impl/src/main/java/org/jbpm/ri/model/ParticipantImpl.java	2008-10-09 06:02:28 UTC (rev 2513)
@@ -29,8 +29,8 @@
 import javax.persistence.GeneratedValue;
 import javax.persistence.Id;
 
+import org.jbpm.api.model.Participant;
 import org.jbpm.api.model.builder.ObjectNameFactory;
-import org.jbpm.api.model.internal.Participant;
 
 /**
  * A Participant, which is used in the definition of attributes for a @{link Pool}, @{link Message}, and @{link

Modified: projects/spec/trunk/modules/impl/src/main/java/org/jbpm/ri/model/TaskImpl.java
===================================================================
--- projects/spec/trunk/modules/impl/src/main/java/org/jbpm/ri/model/TaskImpl.java	2008-10-09 05:35:01 UTC (rev 2512)
+++ projects/spec/trunk/modules/impl/src/main/java/org/jbpm/ri/model/TaskImpl.java	2008-10-09 06:02:28 UTC (rev 2513)
@@ -38,14 +38,14 @@
 import org.jbpm.api.NotImplementedException;
 import org.jbpm.api.client.ProcessEngine;
 import org.jbpm.api.model.Expression;
+import org.jbpm.api.model.InputSet;
 import org.jbpm.api.model.Node;
+import org.jbpm.api.model.OutputSet;
 import org.jbpm.api.model.Property;
 import org.jbpm.api.model.SequenceFlow;
 import org.jbpm.api.model.Signal;
 import org.jbpm.api.model.Task;
 import org.jbpm.api.model.builder.ObjectNameFactory;
-import org.jbpm.api.model.internal.InputSet;
-import org.jbpm.api.model.internal.OutputSet;
 import org.jbpm.api.model.internal.ProcessStructure;
 import org.jbpm.api.runtime.ExecutionContext;
 import org.jbpm.api.runtime.ExecutionHandler;

Modified: projects/spec/trunk/modules/impl/src/main/java/org/jbpm/ri/runtime/DelegatingToken.java
===================================================================
--- projects/spec/trunk/modules/impl/src/main/java/org/jbpm/ri/runtime/DelegatingToken.java	2008-10-09 05:35:01 UTC (rev 2512)
+++ projects/spec/trunk/modules/impl/src/main/java/org/jbpm/ri/runtime/DelegatingToken.java	2008-10-09 06:02:28 UTC (rev 2513)
@@ -23,10 +23,10 @@
 
 //$Id$
 
+import org.jbpm.api.model.InputSet;
 import org.jbpm.api.model.Node;
+import org.jbpm.api.model.OutputSet;
 import org.jbpm.api.model.SequenceFlow;
-import org.jbpm.api.model.internal.InputSet;
-import org.jbpm.api.model.internal.OutputSet;
 import org.jbpm.api.runtime.ExecutionContext;
 import org.jbpm.api.runtime.Token;
 

Modified: projects/spec/trunk/modules/impl/src/main/java/org/jbpm/ri/runtime/MessageSender.java
===================================================================
--- projects/spec/trunk/modules/impl/src/main/java/org/jbpm/ri/runtime/MessageSender.java	2008-10-09 05:35:01 UTC (rev 2512)
+++ projects/spec/trunk/modules/impl/src/main/java/org/jbpm/ri/runtime/MessageSender.java	2008-10-09 06:02:28 UTC (rev 2513)
@@ -28,8 +28,8 @@
 import org.jbpm.api.client.ProcessEngine;
 import org.jbpm.api.model.Message;
 import org.jbpm.api.model.Node;
+import org.jbpm.api.model.Participant;
 import org.jbpm.api.model.builder.MessageBuilder;
-import org.jbpm.api.model.internal.Participant;
 import org.jbpm.api.runtime.ExecutionContext;
 import org.jbpm.api.runtime.Token;
 import org.jbpm.api.service.MessageService;

Modified: projects/spec/trunk/modules/impl/src/main/java/org/jbpm/ri/runtime/MutableToken.java
===================================================================
--- projects/spec/trunk/modules/impl/src/main/java/org/jbpm/ri/runtime/MutableToken.java	2008-10-09 05:35:01 UTC (rev 2512)
+++ projects/spec/trunk/modules/impl/src/main/java/org/jbpm/ri/runtime/MutableToken.java	2008-10-09 06:02:28 UTC (rev 2513)
@@ -23,9 +23,9 @@
 
 //$Id$
 
+import org.jbpm.api.model.InputSet;
+import org.jbpm.api.model.OutputSet;
 import org.jbpm.api.model.SequenceFlow;
-import org.jbpm.api.model.internal.InputSet;
-import org.jbpm.api.model.internal.OutputSet;
 import org.jbpm.api.runtime.Token;
 
 /**

Modified: projects/spec/trunk/modules/impl/src/main/java/org/jbpm/ri/runtime/TokenImpl.java
===================================================================
--- projects/spec/trunk/modules/impl/src/main/java/org/jbpm/ri/runtime/TokenImpl.java	2008-10-09 05:35:01 UTC (rev 2512)
+++ projects/spec/trunk/modules/impl/src/main/java/org/jbpm/ri/runtime/TokenImpl.java	2008-10-09 06:02:28 UTC (rev 2513)
@@ -24,9 +24,9 @@
 //$Id$
 
 import org.jboss.util.id.UID;
+import org.jbpm.api.model.InputSet;
+import org.jbpm.api.model.OutputSet;
 import org.jbpm.api.model.SequenceFlow;
-import org.jbpm.api.model.internal.InputSet;
-import org.jbpm.api.model.internal.OutputSet;
 import org.jbpm.api.runtime.Attachments;
 import org.jbpm.api.runtime.BasicExecutionContext;
 import org.jbpm.api.runtime.ExecutionContext;

Modified: projects/spec/trunk/pom.xml
===================================================================
--- projects/spec/trunk/pom.xml	2008-10-09 05:35:01 UTC (rev 2512)
+++ projects/spec/trunk/pom.xml	2008-10-09 06:02:28 UTC (rev 2513)
@@ -17,7 +17,7 @@
          
   <modelVersion>4.0.0</modelVersion>
 
-  <name>JBoss BPM Spec</name>
+  <name>jBPM Spec</name>
   <groupId>org.jbpm.jbpm4</groupId>
   <artifactId>jbpm-spec</artifactId>
   <packaging>pom</packaging>




More information about the jbpm-commits mailing list