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:35:23 +0200
changeset 3 f08e57ab4480
parent 2 d4a1ac5d5fc5
child 4 c7d713d71ad3
permissions -rw-r--r--
Konfigurace GlassFishe.
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
 * @author fiki
franta-hg@2
    10
 */
franta-hg@2
    11
public class SQLRealm extends AppservRealm {
franta-hg@2
    12
franta-hg@2
    13
	@Override
franta-hg@2
    14
	public String getAuthType() {
franta-hg@2
    15
		throw new UnsupportedOperationException("Not supported yet.");
franta-hg@2
    16
	}
franta-hg@2
    17
franta-hg@2
    18
	@Override
franta-hg@2
    19
	public Enumeration getGroupNames(String string) throws InvalidOperationException, NoSuchUserException {
franta-hg@2
    20
		throw new UnsupportedOperationException("Not supported yet.");
franta-hg@2
    21
	}
franta-hg@2
    22
}