java/sql-java-prihlasovani/src/cz/frantovo/jaas/sql/SQLRealm.java
changeset 2 d4a1ac5d5fc5
child 3 f08e57ab4480
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/java/sql-java-prihlasovani/src/cz/frantovo/jaas/sql/SQLRealm.java	Thu Jul 21 20:15:57 2011 +0200
     1.3 @@ -0,0 +1,23 @@
     1.4 +package cz.frantovo.jaas.sql;
     1.5 +
     1.6 +import com.sun.appserv.security.AppservRealm;
     1.7 +import com.sun.enterprise.security.auth.realm.InvalidOperationException;
     1.8 +import com.sun.enterprise.security.auth.realm.NoSuchUserException;
     1.9 +import java.util.Enumeration;
    1.10 +
    1.11 +/**
    1.12 + *
    1.13 + * @author fiki
    1.14 + */
    1.15 +public class SQLRealm extends AppservRealm {
    1.16 +
    1.17 +	@Override
    1.18 +	public String getAuthType() {
    1.19 +		throw new UnsupportedOperationException("Not supported yet.");
    1.20 +	}
    1.21 +
    1.22 +	@Override
    1.23 +	public Enumeration getGroupNames(String string) throws InvalidOperationException, NoSuchUserException {
    1.24 +		throw new UnsupportedOperationException("Not supported yet.");
    1.25 +	}
    1.26 +}