These files are the samples to use java authentication with teapop.
I have tested it with IBM Java2 1.3 from :
   http://www-106.ibm.com/developerworks/java/jdk/linux130/

To enable java support you must use in configure script the option :
    --with-java=DIR
    where DIR is the directory where your java is installed
    the files need is :
       DIR/include/jni.h             (jni headers)
       DIR/jre/bin/classic/libjvm.so (the java jvm)

The default Authentication class is : TeapopAuth, but it can change with 
--with-javaclass=CLASS in configure script.
Remember to use "/" instead of "." on package names
eg. class : org.xyz.POPAuth must be specified as 
            --with-javaclass=org/xyz/POPAuth

----------------------------------------------------------------------------
Sample files :

User.java

   Added: 2001-06-14   Updated: never
   Author: Ivan F. Martinez <ivanfm@ecodigit.com.br>

   Interface for user information

SampleAuth.java

   Added: 2001-06-14   Updated: never
   Author: Ivan F. Martinez <ivanfm@ecodigit.com.br>

   Sample Java Authentication using JDBC 

Authentication.java

   Added: 2001-06-14   Updated: never
   Author: Ivan F. Martinez <ivanfm@ecodigit.com.br>

   Interface for Authentication routines

