From bc5ee9cb558aca8338f01e34f62e6e15888450ca Mon Sep 17 00:00:00 2001 From: Juan Carlos Luciani Date: Fri, 5 May 2006 22:28:15 +0000 Subject: [PATCH] Continuing the changes due to the name changes for CasaAuthServer and CasaJaasSupport along with changes to integrate those components into the make system. --- .../novell/casa/{authserver => authtoksvc}/AuthReqMsg.java | 2 +- .../novell/casa/{authserver => authtoksvc}/AuthRespMsg.java | 2 +- .../com/novell/casa/{authserver => authtoksvc}/AuthToken.java | 2 +- .../novell/casa/{authserver => authtoksvc}/Base64Coder.java | 2 +- .../casa/{authserver => authtoksvc}/CasaIdentityToken.java | 2 +- .../novell/casa/{authserver => authtoksvc}/GetAuthPolicy.java | 2 +- .../casa/{authserver => authtoksvc}/GetAuthPolicyReqMsg.java | 2 +- .../casa/{authserver => authtoksvc}/GetAuthPolicyRespMsg.java | 2 +- .../casa/{authserver => authtoksvc}/GetAuthTokReqMsg.java | 2 +- .../casa/{authserver => authtoksvc}/GetAuthTokRespMsg.java | 2 +- .../novell/casa/{authserver => authtoksvc}/GetAuthToken.java | 2 +- .../novell/casa/{authserver => authtoksvc}/IdentityToken.java | 2 +- .../casa/{authserver => authtoksvc}/Krb5Authenticate.java | 2 +- .../com/novell/casa/{authserver => authtoksvc}/ProtoDefs.java | 2 +- .../casa/{authserver => authtoksvc}/PwdAuthenticate.java | 2 +- .../novell/casa/{authserver => authtoksvc}/SessionToken.java | 2 +- .../JaasSupport/src/com/novell/casa/jaas/CasaLoginModule.java | 4 ++-- .../JaasSupport/src/com/novell/casa/jaas/CasaPrincipal.java | 2 +- 18 files changed, 19 insertions(+), 19 deletions(-) rename auth_token/server/AuthTokenSvc/src/com/novell/casa/{authserver => authtoksvc}/AuthReqMsg.java (99%) rename auth_token/server/AuthTokenSvc/src/com/novell/casa/{authserver => authtoksvc}/AuthRespMsg.java (99%) rename auth_token/server/AuthTokenSvc/src/com/novell/casa/{authserver => authtoksvc}/AuthToken.java (99%) rename auth_token/server/AuthTokenSvc/src/com/novell/casa/{authserver => authtoksvc}/Base64Coder.java (96%) rename auth_token/server/AuthTokenSvc/src/com/novell/casa/{authserver => authtoksvc}/CasaIdentityToken.java (99%) rename auth_token/server/AuthTokenSvc/src/com/novell/casa/{authserver => authtoksvc}/GetAuthPolicy.java (99%) rename auth_token/server/AuthTokenSvc/src/com/novell/casa/{authserver => authtoksvc}/GetAuthPolicyReqMsg.java (99%) rename auth_token/server/AuthTokenSvc/src/com/novell/casa/{authserver => authtoksvc}/GetAuthPolicyRespMsg.java (99%) rename auth_token/server/AuthTokenSvc/src/com/novell/casa/{authserver => authtoksvc}/GetAuthTokReqMsg.java (99%) rename auth_token/server/AuthTokenSvc/src/com/novell/casa/{authserver => authtoksvc}/GetAuthTokRespMsg.java (99%) rename auth_token/server/AuthTokenSvc/src/com/novell/casa/{authserver => authtoksvc}/GetAuthToken.java (99%) rename auth_token/server/AuthTokenSvc/src/com/novell/casa/{authserver => authtoksvc}/IdentityToken.java (98%) rename auth_token/server/AuthTokenSvc/src/com/novell/casa/{authserver => authtoksvc}/Krb5Authenticate.java (99%) rename auth_token/server/AuthTokenSvc/src/com/novell/casa/{authserver => authtoksvc}/ProtoDefs.java (98%) rename auth_token/server/AuthTokenSvc/src/com/novell/casa/{authserver => authtoksvc}/PwdAuthenticate.java (99%) rename auth_token/server/AuthTokenSvc/src/com/novell/casa/{authserver => authtoksvc}/SessionToken.java (99%) diff --git a/auth_token/server/AuthTokenSvc/src/com/novell/casa/authserver/AuthReqMsg.java b/auth_token/server/AuthTokenSvc/src/com/novell/casa/authtoksvc/AuthReqMsg.java similarity index 99% rename from auth_token/server/AuthTokenSvc/src/com/novell/casa/authserver/AuthReqMsg.java rename to auth_token/server/AuthTokenSvc/src/com/novell/casa/authtoksvc/AuthReqMsg.java index b106a1db..660ce73a 100644 --- a/auth_token/server/AuthTokenSvc/src/com/novell/casa/authserver/AuthReqMsg.java +++ b/auth_token/server/AuthTokenSvc/src/com/novell/casa/authtoksvc/AuthReqMsg.java @@ -22,7 +22,7 @@ * ***********************************************************************/ -package com.novell.casa.authserver; +package com.novell.casa.authtoksvc; import java.io.InputStream; diff --git a/auth_token/server/AuthTokenSvc/src/com/novell/casa/authserver/AuthRespMsg.java b/auth_token/server/AuthTokenSvc/src/com/novell/casa/authtoksvc/AuthRespMsg.java similarity index 99% rename from auth_token/server/AuthTokenSvc/src/com/novell/casa/authserver/AuthRespMsg.java rename to auth_token/server/AuthTokenSvc/src/com/novell/casa/authtoksvc/AuthRespMsg.java index 4222c4e8..fa26108b 100644 --- a/auth_token/server/AuthTokenSvc/src/com/novell/casa/authserver/AuthRespMsg.java +++ b/auth_token/server/AuthTokenSvc/src/com/novell/casa/authtoksvc/AuthRespMsg.java @@ -22,7 +22,7 @@ * ***********************************************************************/ -package com.novell.casa.authserver; +package com.novell.casa.authtoksvc; /** * AuthRespMsg Class. diff --git a/auth_token/server/AuthTokenSvc/src/com/novell/casa/authserver/AuthToken.java b/auth_token/server/AuthTokenSvc/src/com/novell/casa/authtoksvc/AuthToken.java similarity index 99% rename from auth_token/server/AuthTokenSvc/src/com/novell/casa/authserver/AuthToken.java rename to auth_token/server/AuthTokenSvc/src/com/novell/casa/authtoksvc/AuthToken.java index 6ceb79b5..2440cfd6 100644 --- a/auth_token/server/AuthTokenSvc/src/com/novell/casa/authserver/AuthToken.java +++ b/auth_token/server/AuthTokenSvc/src/com/novell/casa/authtoksvc/AuthToken.java @@ -22,7 +22,7 @@ * ***********************************************************************/ -package com.novell.casa.authserver; +package com.novell.casa.authtoksvc; import java.io.ByteArrayInputStream; diff --git a/auth_token/server/AuthTokenSvc/src/com/novell/casa/authserver/Base64Coder.java b/auth_token/server/AuthTokenSvc/src/com/novell/casa/authtoksvc/Base64Coder.java similarity index 96% rename from auth_token/server/AuthTokenSvc/src/com/novell/casa/authserver/Base64Coder.java rename to auth_token/server/AuthTokenSvc/src/com/novell/casa/authtoksvc/Base64Coder.java index 9573ba44..5584b692 100644 --- a/auth_token/server/AuthTokenSvc/src/com/novell/casa/authserver/Base64Coder.java +++ b/auth_token/server/AuthTokenSvc/src/com/novell/casa/authtoksvc/Base64Coder.java @@ -18,7 +18,7 @@ * **************************************************************************/ -package com.novell.casa.authserver; +package com.novell.casa.authtoksvc; public class Base64Coder { diff --git a/auth_token/server/AuthTokenSvc/src/com/novell/casa/authserver/CasaIdentityToken.java b/auth_token/server/AuthTokenSvc/src/com/novell/casa/authtoksvc/CasaIdentityToken.java similarity index 99% rename from auth_token/server/AuthTokenSvc/src/com/novell/casa/authserver/CasaIdentityToken.java rename to auth_token/server/AuthTokenSvc/src/com/novell/casa/authtoksvc/CasaIdentityToken.java index 95088066..5dfd4d9a 100644 --- a/auth_token/server/AuthTokenSvc/src/com/novell/casa/authserver/CasaIdentityToken.java +++ b/auth_token/server/AuthTokenSvc/src/com/novell/casa/authtoksvc/CasaIdentityToken.java @@ -22,7 +22,7 @@ * ***********************************************************************/ -package com.novell.casa.authserver; +package com.novell.casa.authtoksvc; import java.io.ByteArrayInputStream; import java.util.HashSet; diff --git a/auth_token/server/AuthTokenSvc/src/com/novell/casa/authserver/GetAuthPolicy.java b/auth_token/server/AuthTokenSvc/src/com/novell/casa/authtoksvc/GetAuthPolicy.java similarity index 99% rename from auth_token/server/AuthTokenSvc/src/com/novell/casa/authserver/GetAuthPolicy.java rename to auth_token/server/AuthTokenSvc/src/com/novell/casa/authtoksvc/GetAuthPolicy.java index 6ee066d2..81ee8d94 100644 --- a/auth_token/server/AuthTokenSvc/src/com/novell/casa/authserver/GetAuthPolicy.java +++ b/auth_token/server/AuthTokenSvc/src/com/novell/casa/authtoksvc/GetAuthPolicy.java @@ -22,7 +22,7 @@ * ***********************************************************************/ -package com.novell.casa.authserver; +package com.novell.casa.authtoksvc; import java.io.*; import java.io.PrintWriter; diff --git a/auth_token/server/AuthTokenSvc/src/com/novell/casa/authserver/GetAuthPolicyReqMsg.java b/auth_token/server/AuthTokenSvc/src/com/novell/casa/authtoksvc/GetAuthPolicyReqMsg.java similarity index 99% rename from auth_token/server/AuthTokenSvc/src/com/novell/casa/authserver/GetAuthPolicyReqMsg.java rename to auth_token/server/AuthTokenSvc/src/com/novell/casa/authtoksvc/GetAuthPolicyReqMsg.java index 24014bf5..28c5a0db 100644 --- a/auth_token/server/AuthTokenSvc/src/com/novell/casa/authserver/GetAuthPolicyReqMsg.java +++ b/auth_token/server/AuthTokenSvc/src/com/novell/casa/authtoksvc/GetAuthPolicyReqMsg.java @@ -22,7 +22,7 @@ * ***********************************************************************/ -package com.novell.casa.authserver; +package com.novell.casa.authtoksvc; import java.io.InputStream; diff --git a/auth_token/server/AuthTokenSvc/src/com/novell/casa/authserver/GetAuthPolicyRespMsg.java b/auth_token/server/AuthTokenSvc/src/com/novell/casa/authtoksvc/GetAuthPolicyRespMsg.java similarity index 99% rename from auth_token/server/AuthTokenSvc/src/com/novell/casa/authserver/GetAuthPolicyRespMsg.java rename to auth_token/server/AuthTokenSvc/src/com/novell/casa/authtoksvc/GetAuthPolicyRespMsg.java index 09b73688..61bc3ae2 100644 --- a/auth_token/server/AuthTokenSvc/src/com/novell/casa/authserver/GetAuthPolicyRespMsg.java +++ b/auth_token/server/AuthTokenSvc/src/com/novell/casa/authtoksvc/GetAuthPolicyRespMsg.java @@ -22,7 +22,7 @@ * ***********************************************************************/ -package com.novell.casa.authserver; +package com.novell.casa.authtoksvc; /** * GetAuthPolicyRespMsg Class. diff --git a/auth_token/server/AuthTokenSvc/src/com/novell/casa/authserver/GetAuthTokReqMsg.java b/auth_token/server/AuthTokenSvc/src/com/novell/casa/authtoksvc/GetAuthTokReqMsg.java similarity index 99% rename from auth_token/server/AuthTokenSvc/src/com/novell/casa/authserver/GetAuthTokReqMsg.java rename to auth_token/server/AuthTokenSvc/src/com/novell/casa/authtoksvc/GetAuthTokReqMsg.java index 6991d02e..de0a432a 100644 --- a/auth_token/server/AuthTokenSvc/src/com/novell/casa/authserver/GetAuthTokReqMsg.java +++ b/auth_token/server/AuthTokenSvc/src/com/novell/casa/authtoksvc/GetAuthTokReqMsg.java @@ -22,7 +22,7 @@ * ***********************************************************************/ -package com.novell.casa.authserver; +package com.novell.casa.authtoksvc; import java.io.InputStream; diff --git a/auth_token/server/AuthTokenSvc/src/com/novell/casa/authserver/GetAuthTokRespMsg.java b/auth_token/server/AuthTokenSvc/src/com/novell/casa/authtoksvc/GetAuthTokRespMsg.java similarity index 99% rename from auth_token/server/AuthTokenSvc/src/com/novell/casa/authserver/GetAuthTokRespMsg.java rename to auth_token/server/AuthTokenSvc/src/com/novell/casa/authtoksvc/GetAuthTokRespMsg.java index da78e433..8f9699b1 100644 --- a/auth_token/server/AuthTokenSvc/src/com/novell/casa/authserver/GetAuthTokRespMsg.java +++ b/auth_token/server/AuthTokenSvc/src/com/novell/casa/authtoksvc/GetAuthTokRespMsg.java @@ -22,7 +22,7 @@ * ***********************************************************************/ -package com.novell.casa.authserver; +package com.novell.casa.authtoksvc; /** * GetAuthTokRespMsg Class. diff --git a/auth_token/server/AuthTokenSvc/src/com/novell/casa/authserver/GetAuthToken.java b/auth_token/server/AuthTokenSvc/src/com/novell/casa/authtoksvc/GetAuthToken.java similarity index 99% rename from auth_token/server/AuthTokenSvc/src/com/novell/casa/authserver/GetAuthToken.java rename to auth_token/server/AuthTokenSvc/src/com/novell/casa/authtoksvc/GetAuthToken.java index e9a59962..4a075366 100644 --- a/auth_token/server/AuthTokenSvc/src/com/novell/casa/authserver/GetAuthToken.java +++ b/auth_token/server/AuthTokenSvc/src/com/novell/casa/authtoksvc/GetAuthToken.java @@ -22,7 +22,7 @@ * ***********************************************************************/ -package com.novell.casa.authserver; +package com.novell.casa.authtoksvc; import java.io.IOException; import java.io.InputStream; diff --git a/auth_token/server/AuthTokenSvc/src/com/novell/casa/authserver/IdentityToken.java b/auth_token/server/AuthTokenSvc/src/com/novell/casa/authtoksvc/IdentityToken.java similarity index 98% rename from auth_token/server/AuthTokenSvc/src/com/novell/casa/authserver/IdentityToken.java rename to auth_token/server/AuthTokenSvc/src/com/novell/casa/authtoksvc/IdentityToken.java index e9c5d49b..20761d1b 100644 --- a/auth_token/server/AuthTokenSvc/src/com/novell/casa/authserver/IdentityToken.java +++ b/auth_token/server/AuthTokenSvc/src/com/novell/casa/authtoksvc/IdentityToken.java @@ -22,7 +22,7 @@ * ***********************************************************************/ -package com.novell.casa.authserver; +package com.novell.casa.authtoksvc; /* * IdentityTokenProvider Interface. diff --git a/auth_token/server/AuthTokenSvc/src/com/novell/casa/authserver/Krb5Authenticate.java b/auth_token/server/AuthTokenSvc/src/com/novell/casa/authtoksvc/Krb5Authenticate.java similarity index 99% rename from auth_token/server/AuthTokenSvc/src/com/novell/casa/authserver/Krb5Authenticate.java rename to auth_token/server/AuthTokenSvc/src/com/novell/casa/authtoksvc/Krb5Authenticate.java index 8836f732..be12e29a 100644 --- a/auth_token/server/AuthTokenSvc/src/com/novell/casa/authserver/Krb5Authenticate.java +++ b/auth_token/server/AuthTokenSvc/src/com/novell/casa/authtoksvc/Krb5Authenticate.java @@ -22,7 +22,7 @@ * ***********************************************************************/ -package com.novell.casa.authserver; +package com.novell.casa.authtoksvc; import java.io.IOException; import java.io.InputStream; diff --git a/auth_token/server/AuthTokenSvc/src/com/novell/casa/authserver/ProtoDefs.java b/auth_token/server/AuthTokenSvc/src/com/novell/casa/authtoksvc/ProtoDefs.java similarity index 98% rename from auth_token/server/AuthTokenSvc/src/com/novell/casa/authserver/ProtoDefs.java rename to auth_token/server/AuthTokenSvc/src/com/novell/casa/authtoksvc/ProtoDefs.java index c5786e21..4482ed82 100644 --- a/auth_token/server/AuthTokenSvc/src/com/novell/casa/authserver/ProtoDefs.java +++ b/auth_token/server/AuthTokenSvc/src/com/novell/casa/authtoksvc/ProtoDefs.java @@ -22,7 +22,7 @@ * ***********************************************************************/ -package com.novell.casa.authserver; +package com.novell.casa.authtoksvc; /* * ProDefs Class. diff --git a/auth_token/server/AuthTokenSvc/src/com/novell/casa/authserver/PwdAuthenticate.java b/auth_token/server/AuthTokenSvc/src/com/novell/casa/authtoksvc/PwdAuthenticate.java similarity index 99% rename from auth_token/server/AuthTokenSvc/src/com/novell/casa/authserver/PwdAuthenticate.java rename to auth_token/server/AuthTokenSvc/src/com/novell/casa/authtoksvc/PwdAuthenticate.java index 7df56cf5..3f476c2d 100644 --- a/auth_token/server/AuthTokenSvc/src/com/novell/casa/authserver/PwdAuthenticate.java +++ b/auth_token/server/AuthTokenSvc/src/com/novell/casa/authtoksvc/PwdAuthenticate.java @@ -22,7 +22,7 @@ * ***********************************************************************/ -package com.novell.casa.authserver; +package com.novell.casa.authtoksvc; import java.io.BufferedReader; import java.io.IOException; diff --git a/auth_token/server/AuthTokenSvc/src/com/novell/casa/authserver/SessionToken.java b/auth_token/server/AuthTokenSvc/src/com/novell/casa/authtoksvc/SessionToken.java similarity index 99% rename from auth_token/server/AuthTokenSvc/src/com/novell/casa/authserver/SessionToken.java rename to auth_token/server/AuthTokenSvc/src/com/novell/casa/authtoksvc/SessionToken.java index b570cdd4..ae677092 100644 --- a/auth_token/server/AuthTokenSvc/src/com/novell/casa/authserver/SessionToken.java +++ b/auth_token/server/AuthTokenSvc/src/com/novell/casa/authtoksvc/SessionToken.java @@ -22,7 +22,7 @@ * ***********************************************************************/ -package com.novell.casa.authserver; +package com.novell.casa.authtoksvc; import java.io.ByteArrayInputStream; diff --git a/auth_token/server/JaasSupport/src/com/novell/casa/jaas/CasaLoginModule.java b/auth_token/server/JaasSupport/src/com/novell/casa/jaas/CasaLoginModule.java index 732e4f25..9cbaf5eb 100644 --- a/auth_token/server/JaasSupport/src/com/novell/casa/jaas/CasaLoginModule.java +++ b/auth_token/server/JaasSupport/src/com/novell/casa/jaas/CasaLoginModule.java @@ -36,8 +36,8 @@ import javax.security.auth.login.FailedLoginException; import javax.security.auth.login.LoginException; import javax.security.auth.spi.LoginModule; -import com.novell.casa.authserver.AuthToken; -import com.novell.casa.authserver.CasaIdentityToken; +import com.novell.casa.authtoksvc.AuthToken; +import com.novell.casa.authtoksvc.CasaIdentityToken; /* * CasaLoginModule Class. diff --git a/auth_token/server/JaasSupport/src/com/novell/casa/jaas/CasaPrincipal.java b/auth_token/server/JaasSupport/src/com/novell/casa/jaas/CasaPrincipal.java index 1c74dea6..7f3e35f8 100644 --- a/auth_token/server/JaasSupport/src/com/novell/casa/jaas/CasaPrincipal.java +++ b/auth_token/server/JaasSupport/src/com/novell/casa/jaas/CasaPrincipal.java @@ -24,7 +24,7 @@ package com.novell.casa.jaas; import java.security.Principal; -import com.novell.casa.authserver.IdentityToken; +import com.novell.casa.authtoksvc.IdentityToken; /* * CasaPrincipal class.