Skip to content

Commit

Permalink
Fixed test class for the injection point metadata tests.
Browse files Browse the repository at this point in the history
git-svn-id: http://anonsvn.jboss.org/repos/weld/ri/trunk@754 1c488680-804c-0410-94cd-c6b725194a0e
  • Loading branch information
drallen committed Jan 3, 2009
1 parent 1c67987 commit 0ef7725
Showing 1 changed file with 8 additions and 3 deletions.
Expand Up @@ -17,18 +17,23 @@

package org.jboss.webbeans.test.beans;

import java.io.Serializable;

import javax.webbeans.Current;
import javax.webbeans.SessionScoped;

/**
* Test bean to inject another bean which uses injection point metadata in a field
* Test bean to inject another bean which uses injection point metadata in a
* field
*
* @author David Allen
*
*
*/
@SessionScoped
public class FieldInjectionPointBean
public class FieldInjectionPointBean implements Serializable
{
private static final long serialVersionUID = 1L;

@Current
public FieldInjectionPoint injectedBean;
}

0 comments on commit 0ef7725

Please sign in to comment.