java/sql-java-prihlasovani/src/cz/frantovo/jaas/sql/SQLRealm.java
author František Kučera <franta-hg@frantovo.cz>
Thu, 21 Jul 2011 20:15:57 +0200
changeset 2 d4a1ac5d5fc5
child 3 f08e57ab4480
permissions -rw-r--r--
Prázdné třídy + build.xml.
franta-hg@2
     1
package cz.frantovo.jaas.sql;
franta-hg@2
     2
franta-hg@2
     3
import com.sun.appserv.security.AppservRealm;
franta-hg@2
     4
import com.sun.enterprise.security.auth.realm.InvalidOperationException;
franta-hg@2
     5
import com.sun.enterprise.security.auth.realm.NoSuchUserException;
franta-hg@2
     6
import java.util.Enumeration;
franta-hg@2
     7
franta-hg@2
     8
/**
franta-hg@2
     9
 *
franta-hg@2
    10
 * @author fiki
franta-hg@2
    11
 */
franta-hg@2
    12
public class SQLRealm extends AppservRealm {
franta-hg@2
    13
franta-hg@2
    14
	@Override
franta-hg@2
    15
	public String getAuthType() {
franta-hg@2
    16
		throw new UnsupportedOperationException("Not supported yet.");
franta-hg@2
    17
	}
franta-hg@2
    18
franta-hg@2
    19
	@Override
franta-hg@2
    20
	public Enumeration getGroupNames(String string) throws InvalidOperationException, NoSuchUserException {
franta-hg@2
    21
		throw new UnsupportedOperationException("Not supported yet.");
franta-hg@2
    22
	}
franta-hg@2
    23
}