More changes for the removal of the Axis dependencies.

Removed the log files created by the Windows INSTALL.

Corrected the "Author" for files created by Greg.

Tuned the ATS logs to be less chatty and have a greater backlog.

Updated the NOTICES file and added READMEs to provide information
about external packages included in the project.
This commit is contained in:
Juan Carlos Luciani
2007-03-17 06:39:46 +00:00
parent 33a49c686a
commit 7a44908936
26 changed files with 2650 additions and 2904 deletions

View File

@@ -36,7 +36,7 @@ import org.apache.log4j.Logger;
/**
* AuthMechConfig Class.
* <p>
* This class obtains and maintains authentication token configuration.
* This class obtains and maintains configuration for authentication mechanisms.
*
*/
public final class AuthMechConfig
@@ -106,7 +106,7 @@ public final class AuthMechConfig
}
catch (FileNotFoundException e)
{
m_log.warn("Constructor()- File " + mechSettingsFileName + " not found");
m_log.debug("Constructor()- File " + mechSettingsFileName + " not found");
throw new Exception("Constructor- File not found", e);
}
catch (IOException e)

View File

@@ -176,7 +176,7 @@ public final class AuthTokenConfig
}
catch (FileNotFoundException e)
{
m_log.warn("Constructor()- File " + authTokenSettingsFileName + " not found");
m_log.debug("Constructor()- File " + authTokenSettingsFileName + " not found");
throw new Exception("AuthTokenConfig()- File not found", e);
}
catch (IOException e)

View File

@@ -128,7 +128,7 @@ public final class EnabledSvcsConfig
}
catch (FileNotFoundException e)
{
m_log.warn("Constructor()- File " + configFolder + File.separator + m_authPolicyFileName + " not found");
m_log.debug("Constructor()- File " + configFolder + File.separator + m_authPolicyFileName + " not found");
}
catch (IOException e)
{

View File

@@ -118,7 +118,7 @@ public final class IdenTokenConfig
}
catch (FileNotFoundException e)
{
m_log.warn("Constructor()- File " + idenTokenSettingsFileName + " not found");
m_log.debug("Constructor()- File " + idenTokenSettingsFileName + " not found");
throw new Exception("IdenTokenConfig()- File not found", e);
}
catch (IOException e)

View File

@@ -176,7 +176,7 @@ public final class Krb5Authenticate implements AuthMechanism, Serializable
}
catch (GSSException e)
{
m_log.warn("Constructor()- GSS Exception caught: " + e.getLocalizedMessage());
m_log.debug("Constructor()- GSS Exception caught: " + e.getLocalizedMessage());
throw new Exception("Failed to instantiate needed GSS objects", e);
}
}