Skip to content

Commit

Permalink
WBRI-117, update to packaging to PRD2
Browse files Browse the repository at this point in the history
  • Loading branch information
pmuir committed Jan 26, 2009
1 parent 5da5caf commit 5ad1f09
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 20 deletions.
Expand Up @@ -2,8 +2,8 @@

import java.io.Serializable;

import javax.webbeans.Named;
import javax.webbeans.RequestScoped;
import javax.annotation.Named;
import javax.context.RequestScoped;

@RequestScoped @Named
public class Credentials implements Serializable {
Expand Down
Expand Up @@ -8,7 +8,7 @@
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

import javax.webbeans.BindingType;
import javax.inject.BindingType;

@Retention(RetentionPolicy.RUNTIME)
@Target({TYPE, METHOD, FIELD})
Expand Down
Expand Up @@ -4,12 +4,12 @@
import java.util.Arrays;
import java.util.List;

import javax.annotation.Named;
import javax.context.SessionScoped;
import javax.faces.application.FacesMessage;
import javax.faces.context.FacesContext;
import javax.webbeans.Current;
import javax.webbeans.Named;
import javax.webbeans.Produces;
import javax.webbeans.SessionScoped;
import javax.inject.Current;
import javax.inject.Produces;

@SessionScoped @Named
public class Login implements Serializable {
Expand Down
Expand Up @@ -3,14 +3,14 @@

import java.io.Serializable;

import javax.annotation.Named;
import javax.annotation.PostConstruct;
import javax.context.SessionScoped;
import javax.faces.application.FacesMessage;
import javax.faces.context.FacesContext;
import javax.webbeans.AnnotationLiteral;
import javax.webbeans.Current;
import javax.webbeans.Named;
import javax.webbeans.SessionScoped;
import javax.webbeans.manager.Manager;
import javax.inject.AnnotationLiteral;
import javax.inject.Current;
import javax.inject.manager.Manager;

@Named
@SessionScoped
Expand Down
Expand Up @@ -3,8 +3,8 @@

import java.io.Serializable;

import javax.webbeans.ApplicationScoped;
import javax.webbeans.Produces;
import javax.context.ApplicationScoped;
import javax.inject.Produces;

@ApplicationScoped
public class Generator implements Serializable
Expand Down
Expand Up @@ -11,7 +11,7 @@
import java.lang.annotation.Retention;
import java.lang.annotation.Target;

import javax.webbeans.BindingType;
import javax.inject.BindingType;

@Target( { TYPE, METHOD, PARAMETER, FIELD })
@Retention(RUNTIME)
Expand Down
Expand Up @@ -11,7 +11,7 @@
import java.lang.annotation.Retention;
import java.lang.annotation.Target;

import javax.webbeans.BindingType;
import javax.inject.BindingType;

@Target( { TYPE, METHOD, PARAMETER, FIELD })
@Retention(RUNTIME)
Expand Down
Expand Up @@ -3,7 +3,7 @@
import java.io.Serializable;

import javax.ejb.EJB;
import javax.webbeans.Initializer;
import javax.inject.Initializer;

public class TextTranslator implements Serializable
{
Expand Down
@@ -1,10 +1,10 @@
package org.jboss.webbeans.examples.translator;

import javax.annotation.Named;
import javax.context.RequestScoped;
import javax.ejb.Remove;
import javax.ejb.Stateful;
import javax.webbeans.Current;
import javax.webbeans.Named;
import javax.webbeans.RequestScoped;
import javax.inject.Current;

@Stateful
@RequestScoped
Expand Down

0 comments on commit 5ad1f09

Please sign in to comment.