franta-hg@2: package cz.frantovo.jaas.sql; franta-hg@2: franta-hg@2: import com.sun.appserv.security.AppservRealm; franta-hg@2: import com.sun.enterprise.security.auth.realm.InvalidOperationException; franta-hg@2: import com.sun.enterprise.security.auth.realm.NoSuchUserException; franta-hg@2: import java.util.Enumeration; franta-hg@2: franta-hg@2: /** franta-hg@2: * franta-hg@2: * @author fiki franta-hg@2: */ franta-hg@2: public class SQLRealm extends AppservRealm { franta-hg@2: franta-hg@2: @Override franta-hg@2: public String getAuthType() { franta-hg@2: throw new UnsupportedOperationException("Not supported yet."); franta-hg@2: } franta-hg@2: franta-hg@2: @Override franta-hg@2: public Enumeration getGroupNames(String string) throws InvalidOperationException, NoSuchUserException { franta-hg@2: throw new UnsupportedOperationException("Not supported yet."); franta-hg@2: } franta-hg@2: }