summaryrefslogtreecommitdiff
path: root/java
diff options
context:
space:
mode:
Diffstat (limited to 'java')
-rw-r--r--java/build.xml2
-rw-r--r--java/src/com/memberwebs/httpauth/BaseHttpAuthenticator.java6
-rw-r--r--java/src/com/memberwebs/httpauth/HttpAuthConnection.java6
-rw-r--r--java/src/com/memberwebs/httpauth/HttpAuthConnectionPool.java6
-rw-r--r--java/src/com/memberwebs/httpauth/HttpAuthConnectionSource.java6
-rw-r--r--java/src/com/memberwebs/httpauth/HttpAuthException.java6
-rw-r--r--java/src/com/memberwebs/httpauth/HttpAuthFilter.java6
-rw-r--r--java/src/com/memberwebs/httpauth/jetty/JettyHttpAuthenticator.java6
-rw-r--r--java/src/com/memberwebs/httpauth/servlet/ServletHttpAuthenticator.java6
9 files changed, 25 insertions, 25 deletions
diff --git a/java/build.xml b/java/build.xml
index 1bf4269..a148f6a 100644
--- a/java/build.xml
+++ b/java/build.xml
@@ -22,7 +22,7 @@
<attribute name="Class-Path" value="lib/javax.servlet.jar lib/org.mortbay.jetty.jar"/>
<attribute name="Implementation-Title" value="httpauth-client"/>
<attribute name="Implementation-Version" value="${version}"/>
- <attribute name="Implementation-Vendor" value="nielsen@memberwebs.com"/>
+ <attribute name="Implementation-Vendor" value="stef@memberwebs.com"/>
</manifest>
<jar basedir="." destfile="build/httpauth-client-src.jar" excludes="CVS .* build/* .svn"/>
<jar basedir="build" destfile="build/httpauth-client.jar" manifest="build/manifest" includes="**/*.class"/>
diff --git a/java/src/com/memberwebs/httpauth/BaseHttpAuthenticator.java b/java/src/com/memberwebs/httpauth/BaseHttpAuthenticator.java
index 140beec..9640c0a 100644
--- a/java/src/com/memberwebs/httpauth/BaseHttpAuthenticator.java
+++ b/java/src/com/memberwebs/httpauth/BaseHttpAuthenticator.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2004, Nate Nielsen
+ * Copyright (c) 2004, Stef Walter
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -32,7 +32,7 @@
*
*
* CONTRIBUTORS
- * Nate Nielsen <nielsen@memberwebs.com>
+ * Stef Walter <stef@memberwebs.com>
*
*/
@@ -46,7 +46,7 @@ import java.util.Enumeration;
* Base class for HttpAuth authenticators. This class in not generally used
* outside of the HttpAuth code.
*
- * @author Nate Nielsen
+ * @author Stef Walter
*/
public abstract class BaseHttpAuthenticator
{
diff --git a/java/src/com/memberwebs/httpauth/HttpAuthConnection.java b/java/src/com/memberwebs/httpauth/HttpAuthConnection.java
index b26dc09..823209c 100644
--- a/java/src/com/memberwebs/httpauth/HttpAuthConnection.java
+++ b/java/src/com/memberwebs/httpauth/HttpAuthConnection.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2004, Nate Nielsen
+ * Copyright (c) 2004, Stef Walter
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -32,7 +32,7 @@
*
*
* CONTRIBUTORS
- * Nate Nielsen <nielsen@memberwebs.com>
+ * Stef Walter <stef@memberwebs.com>
*
*/
@@ -53,7 +53,7 @@ import java.util.Map;
/**
* A connection to the HttpAuth daemon.
*
- * @author Nate Nielsen
+ * @author Stef Walter
*/
public class HttpAuthConnection
implements HttpAuthConnectionSource
diff --git a/java/src/com/memberwebs/httpauth/HttpAuthConnectionPool.java b/java/src/com/memberwebs/httpauth/HttpAuthConnectionPool.java
index 089402b..7b3cf22 100644
--- a/java/src/com/memberwebs/httpauth/HttpAuthConnectionPool.java
+++ b/java/src/com/memberwebs/httpauth/HttpAuthConnectionPool.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2004, Nate Nielsen
+ * Copyright (c) 2004, Stefan Walter
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -32,7 +32,7 @@
*
*
* CONTRIBUTORS
- * Nate Nielsen <nielsen@memberwebs.com>
+ * Stef Walter <stef@memberwebs.com>
*
*/
@@ -46,7 +46,7 @@ import java.util.Stack;
/**
* A pool of connections to the HttpAuth daemon.
*
- * @author Nate Nielsen
+ * @author Stef Walter
*/
public class HttpAuthConnectionPool
implements HttpAuthConnectionSource
diff --git a/java/src/com/memberwebs/httpauth/HttpAuthConnectionSource.java b/java/src/com/memberwebs/httpauth/HttpAuthConnectionSource.java
index eab8eb5..e084332 100644
--- a/java/src/com/memberwebs/httpauth/HttpAuthConnectionSource.java
+++ b/java/src/com/memberwebs/httpauth/HttpAuthConnectionSource.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2004, Nate Nielsen
+ * Copyright (c) 2004, Stefan Walter
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -32,7 +32,7 @@
*
*
* CONTRIBUTORS
- * Nate Nielsen <nielsen@memberwebs.com>
+ * Stef Walter <stef@memberwebs.com>
*
*/
@@ -41,7 +41,7 @@ package com.memberwebs.httpauth;
/**
* An interface for a pool of HttpAuth connections.
*
- * @author Nate Nielsen
+ * @author Stef Walter
*/
public interface HttpAuthConnectionSource
{
diff --git a/java/src/com/memberwebs/httpauth/HttpAuthException.java b/java/src/com/memberwebs/httpauth/HttpAuthException.java
index c342302..922e7bd 100644
--- a/java/src/com/memberwebs/httpauth/HttpAuthException.java
+++ b/java/src/com/memberwebs/httpauth/HttpAuthException.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2004, Nate Nielsen
+ * Copyright (c) 2004, Stef Walter
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -32,7 +32,7 @@
*
*
* CONTRIBUTORS
- * Nate Nielsen <nielsen@memberwebs.com>
+ * Stef Walter <stef@memberwebs.com>
*
*/
@@ -43,7 +43,7 @@ package com.memberwebs.httpauth;
* A general utility exception which can wrap another exception or
* hold it's own message
*
- * @author Nate Nielsen
+ * @author Stef Walter
*/
public class HttpAuthException
extends Exception
diff --git a/java/src/com/memberwebs/httpauth/HttpAuthFilter.java b/java/src/com/memberwebs/httpauth/HttpAuthFilter.java
index 1c7367d..3d7adee 100644
--- a/java/src/com/memberwebs/httpauth/HttpAuthFilter.java
+++ b/java/src/com/memberwebs/httpauth/HttpAuthFilter.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2004, Nate Nielsen
+ * Copyright (c) 2004, Stefan Walter
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -32,7 +32,7 @@
*
*
* CONTRIBUTORS
- * Nate Nielsen <nielsen@memberwebs.com>
+ * Stef Walter <stef@memberwebs.com>
*
*/
@@ -43,7 +43,7 @@ package com.memberwebs.httpauth;
* authentication available for each request. This could allow
* more insecure authentication over SSL for example.
*
- * @author Nate Nielsen
+ * @author Stef Walter
*/
public interface HttpAuthFilter
{
diff --git a/java/src/com/memberwebs/httpauth/jetty/JettyHttpAuthenticator.java b/java/src/com/memberwebs/httpauth/jetty/JettyHttpAuthenticator.java
index 0bf826d..541b7b2 100644
--- a/java/src/com/memberwebs/httpauth/jetty/JettyHttpAuthenticator.java
+++ b/java/src/com/memberwebs/httpauth/jetty/JettyHttpAuthenticator.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2004, Nate Nielsen
+ * Copyright (c) 2004, Stefan Walter
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -32,7 +32,7 @@
*
*
* CONTRIBUTORS
- * Nate Nielsen <nielsen@memberwebs.com>
+ * Stef Walter <stef@memberwebs.com>
*
*/
@@ -56,7 +56,7 @@ import com.memberwebs.httpauth.HttpAuthFilter;
* An authenticator for the Jetty web server. An instance of this object
* is used by a Jetty HttpContext to perform authentication.
*
- * @author Nate Nielsen
+ * @author Stef Walter
*/
public class JettyHttpAuthenticator
extends BaseHttpAuthenticator
diff --git a/java/src/com/memberwebs/httpauth/servlet/ServletHttpAuthenticator.java b/java/src/com/memberwebs/httpauth/servlet/ServletHttpAuthenticator.java
index da1edee..2cd0532 100644
--- a/java/src/com/memberwebs/httpauth/servlet/ServletHttpAuthenticator.java
+++ b/java/src/com/memberwebs/httpauth/servlet/ServletHttpAuthenticator.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2004, Nate Nielsen
+ * Copyright (c) 2004, Stefan Walter
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -32,7 +32,7 @@
*
*
* CONTRIBUTORS
- * Nate Nielsen <nielsen@memberwebs.com>
+ * Stef Walter <stef@memberwebs.com>
*
*/
@@ -57,7 +57,7 @@ import com.memberwebs.httpauth.HttpAuthException;
* Note that the user will not be set on the request and will not be
* available via req.getRemoteUser().
*
- * @author Nate Nielsen
+ * @author Stef Walter
*/
public class ServletHttpAuthenticator