Author: shane.bryzak(a)jboss.com
Date: 2009-10-07 22:46:12 -0400 (Wed, 07 Oct 2009)
New Revision: 3873
Added:
ri/trunk/core-api/src/main/java/org/jboss/weld/
ri/trunk/core-api/src/main/java/org/jboss/weld/conversation/
Removed:
ri/trunk/core-api/src/main/java/org/jboss/webbeans/conversation/
Modified:
ri/trunk/core-api/pom.xml
ri/trunk/core-api/src/main/java/org/jboss/weld/conversation/ConversationConcurrentAccessTimeout.java
ri/trunk/core-api/src/main/java/org/jboss/weld/conversation/ConversationIdGenerator.java
ri/trunk/core-api/src/main/java/org/jboss/weld/conversation/ConversationIdName.java
ri/trunk/core-api/src/main/java/org/jboss/weld/conversation/ConversationInactivityTimeout.java
ri/trunk/core-api/src/main/java/org/jboss/weld/conversation/ConversationManager.java
ri/trunk/core-api/src/main/java/org/jboss/weld/conversation/ConversationTerminator.java
Log:
rename core-api package
Modified: ri/trunk/core-api/pom.xml
===================================================================
--- ri/trunk/core-api/pom.xml 2009-10-07 21:43:49 UTC (rev 3872)
+++ ri/trunk/core-api/pom.xml 2009-10-08 02:46:12 UTC (rev 3873)
@@ -1,18 +1,18 @@
<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">
<parent>
- <artifactId>webbeans-parent</artifactId>
- <groupId>org.jboss.webbeans</groupId>
+ <artifactId>weld-parent</artifactId>
+ <groupId>org.jboss.weld</groupId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
- <groupId>org.jboss.webbeans</groupId>
- <artifactId>webbeans-api</artifactId>
+ <groupId>org.jboss.weld</groupId>
+ <artifactId>weld-api</artifactId>
<version>1.0.0-SNAPSHOT</version>
- <name>Web Beans Core API</name>
+ <name>Weld Core API</name>
<dependencies>
<dependency>
- <groupId>org.jboss.webbeans</groupId>
+ <groupId>org.jboss.weld</groupId>
<artifactId>jsr299-api</artifactId>
</dependency>
Copied: ri/trunk/core-api/src/main/java/org/jboss/weld/conversation (from rev 3872,
ri/trunk/core-api/src/main/java/org/jboss/webbeans/conversation)
Modified:
ri/trunk/core-api/src/main/java/org/jboss/weld/conversation/ConversationConcurrentAccessTimeout.java
===================================================================
---
ri/trunk/core-api/src/main/java/org/jboss/webbeans/conversation/ConversationConcurrentAccessTimeout.java 2009-10-07
21:43:49 UTC (rev 3872)
+++
ri/trunk/core-api/src/main/java/org/jboss/weld/conversation/ConversationConcurrentAccessTimeout.java 2009-10-08
02:46:12 UTC (rev 3873)
@@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package org.jboss.webbeans.conversation;
+package org.jboss.weld.conversation;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
Modified:
ri/trunk/core-api/src/main/java/org/jboss/weld/conversation/ConversationIdGenerator.java
===================================================================
---
ri/trunk/core-api/src/main/java/org/jboss/webbeans/conversation/ConversationIdGenerator.java 2009-10-07
21:43:49 UTC (rev 3872)
+++
ri/trunk/core-api/src/main/java/org/jboss/weld/conversation/ConversationIdGenerator.java 2009-10-08
02:46:12 UTC (rev 3873)
@@ -14,13 +14,13 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package org.jboss.webbeans.conversation;
+package org.jboss.weld.conversation;
/**
* Generates conversation ID:s for the conversation manager
*
* @author Nicklas Karlsson
- * @see
org.jboss.webbeans.conversation.ConversationManager#beginOrRestoreConversation(String)
+ * @see
org.jboss.weld.conversation.ConversationManager#beginOrRestoreConversation(String)
*/
public interface ConversationIdGenerator
{
Modified:
ri/trunk/core-api/src/main/java/org/jboss/weld/conversation/ConversationIdName.java
===================================================================
---
ri/trunk/core-api/src/main/java/org/jboss/webbeans/conversation/ConversationIdName.java 2009-10-07
21:43:49 UTC (rev 3872)
+++
ri/trunk/core-api/src/main/java/org/jboss/weld/conversation/ConversationIdName.java 2009-10-08
02:46:12 UTC (rev 3873)
@@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package org.jboss.webbeans.conversation;
+package org.jboss.weld.conversation;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
Modified:
ri/trunk/core-api/src/main/java/org/jboss/weld/conversation/ConversationInactivityTimeout.java
===================================================================
---
ri/trunk/core-api/src/main/java/org/jboss/webbeans/conversation/ConversationInactivityTimeout.java 2009-10-07
21:43:49 UTC (rev 3872)
+++
ri/trunk/core-api/src/main/java/org/jboss/weld/conversation/ConversationInactivityTimeout.java 2009-10-08
02:46:12 UTC (rev 3873)
@@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package org.jboss.webbeans.conversation;
+package org.jboss.weld.conversation;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
Modified:
ri/trunk/core-api/src/main/java/org/jboss/weld/conversation/ConversationManager.java
===================================================================
---
ri/trunk/core-api/src/main/java/org/jboss/webbeans/conversation/ConversationManager.java 2009-10-07
21:43:49 UTC (rev 3872)
+++
ri/trunk/core-api/src/main/java/org/jboss/weld/conversation/ConversationManager.java 2009-10-08
02:46:12 UTC (rev 3873)
@@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package org.jboss.webbeans.conversation;
+package org.jboss.weld.conversation;
import java.util.Set;
@@ -24,7 +24,7 @@
* A conversation manager responsible for starting, resuming and ending conversations
*
* @author Nicklas Karlsson
- * @see org.jboss.webbeans.conversation.ConversationManager
+ * @see org.jboss.weld.conversation.ConversationManager
*/
public interface ConversationManager
{
Modified:
ri/trunk/core-api/src/main/java/org/jboss/weld/conversation/ConversationTerminator.java
===================================================================
---
ri/trunk/core-api/src/main/java/org/jboss/webbeans/conversation/ConversationTerminator.java 2009-10-07
21:43:49 UTC (rev 3872)
+++
ri/trunk/core-api/src/main/java/org/jboss/weld/conversation/ConversationTerminator.java 2009-10-08
02:46:12 UTC (rev 3873)
@@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package org.jboss.webbeans.conversation;
+package org.jboss.weld.conversation;
import java.util.concurrent.Future;