# HG changeset patch # User František Kučera # Date 1311272157 -7200 # Node ID d4a1ac5d5fc527e0bacd911d7ee4c2f8d68a9a37 # Parent e32f02371a63fd62bbc06ced2119eefe14435c56 Prázdné třídy + build.xml. diff -r e32f02371a63 -r d4a1ac5d5fc5 java/sql-java-prihlasovani/build.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/java/sql-java-prihlasovani/build.xml Thu Jul 21 20:15:57 2011 +0200 @@ -0,0 +1,74 @@ + + + + + + + + + + + Builds, tests, and runs the project sql-java-prihlasovani. + + + diff -r e32f02371a63 -r d4a1ac5d5fc5 java/sql-java-prihlasovani/src/cz/frantovo/jaas/sql/SQLLoginModul.java --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/java/sql-java-prihlasovani/src/cz/frantovo/jaas/sql/SQLLoginModul.java Thu Jul 21 20:15:57 2011 +0200 @@ -0,0 +1,11 @@ +package cz.frantovo.jaas.sql; + +import com.sun.appserv.security.AppservPasswordLoginModule; + +/** + * + * TODO: později bude potomkem com.sun.appserv.security.AbstractLoginModule + * @author fiki + */ +public class SQLLoginModul extends AppservPasswordLoginModule { +} diff -r e32f02371a63 -r d4a1ac5d5fc5 java/sql-java-prihlasovani/src/cz/frantovo/jaas/sql/SQLRealm.java --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/java/sql-java-prihlasovani/src/cz/frantovo/jaas/sql/SQLRealm.java Thu Jul 21 20:15:57 2011 +0200 @@ -0,0 +1,23 @@ +package cz.frantovo.jaas.sql; + +import com.sun.appserv.security.AppservRealm; +import com.sun.enterprise.security.auth.realm.InvalidOperationException; +import com.sun.enterprise.security.auth.realm.NoSuchUserException; +import java.util.Enumeration; + +/** + * + * @author fiki + */ +public class SQLRealm extends AppservRealm { + + @Override + public String getAuthType() { + throw new UnsupportedOperationException("Not supported yet."); + } + + @Override + public Enumeration getGroupNames(String string) throws InvalidOperationException, NoSuchUserException { + throw new UnsupportedOperationException("Not supported yet."); + } +}