Skip to content

Commit

Permalink
rename core-api package
Browse files Browse the repository at this point in the history
git-svn-id: http://anonsvn.jboss.org/repos/weld/ri/trunk@3873 1c488680-804c-0410-94cd-c6b725194a0e
  • Loading branch information
sbryzak committed Oct 8, 2009
1 parent f8d1fc1 commit 716c2d2
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
12 changes: 6 additions & 6 deletions core-api/pom.xml
@@ -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>

Expand Down
Expand Up @@ -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;
Expand Down
Expand Up @@ -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
{
Expand Down
Expand Up @@ -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;
Expand Down
Expand Up @@ -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;
Expand Down
Expand Up @@ -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;

Expand All @@ -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
{
Expand Down
Expand Up @@ -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;

Expand Down

0 comments on commit 716c2d2

Please sign in to comment.