Skip to content

Commit

Permalink
Fixed integration test and sample applications for external authentic…
Browse files Browse the repository at this point in the history
…ation
  • Loading branch information
marcelk committed Dec 29, 2010
1 parent d139249 commit 1824b70
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 4 deletions.
6 changes: 6 additions & 0 deletions examples/openid-op/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,12 @@
</exclusions>
</dependency>

<dependency>
<groupId>org.jboss.seam.servlet</groupId>
<artifactId>seam-servlet</artifactId>
<version>3.0.0.Alpha3</version>
</dependency>

<dependency>
<groupId>javax.enterprise</groupId>
<artifactId>cdi-api</artifactId>
Expand Down
6 changes: 6 additions & 0 deletions examples/openid-rp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,12 @@
</exclusions>
</dependency>

<dependency>
<groupId>org.jboss.seam.servlet</groupId>
<artifactId>seam-servlet</artifactId>
<version>3.0.0.Alpha3</version>
</dependency>

<dependency>
<groupId>javax.enterprise</groupId>
<artifactId>cdi-api</artifactId>
Expand Down
6 changes: 6 additions & 0 deletions examples/saml-idp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,12 @@
</exclusions>
</dependency>

<dependency>
<groupId>org.jboss.seam.servlet</groupId>
<artifactId>seam-servlet</artifactId>
<version>3.0.0.Alpha3</version>
</dependency>

<dependency>
<groupId>javax.enterprise</groupId>
<artifactId>cdi-api</artifactId>
Expand Down
6 changes: 6 additions & 0 deletions examples/saml-sp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,12 @@
</exclusions>
</dependency>

<dependency>
<groupId>org.jboss.seam.servlet</groupId>
<artifactId>seam-servlet</artifactId>
<version>3.0.0.Alpha3</version>
</dependency>

<dependency>
<groupId>javax.enterprise</groupId>
<artifactId>cdi-api</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,9 @@ public class OpenIdServlet extends HttpServlet
{
private static final long serialVersionUID = -3058316157797375740L;

@Inject
private Logger log;
// TODO: use injection as soon as Jira issue SOLDER-63 has been solved
// @Inject
private Logger log = Logger.getLogger(OpenIdServlet.class);

@Inject
private ResponseHandler responseHandler;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,9 @@ public class SamlServlet extends HttpServlet
{
private static final long serialVersionUID = -6125510783395424719L;

@Inject
private Logger log;
// TODO: use injection as soon as Jira issue SOLDER-63 has been solved
// @Inject
private Logger log = Logger.getLogger(SamlServlet.class);

@Inject
private SamlMessageReceiver samlMessageReceiver;
Expand Down

0 comments on commit 1824b70

Please sign in to comment.