<%-- $This file is distributed under the terms of the license in /doc/license.txt$ --%> <%@page import="edu.cornell.mannlib.vitro.webapp.auth.identifier.ServletIdentifierBundleFactory"%> <%@page import="java.util.List"%> <% List idb = ServletIdentifierBundleFactory.getIdBundleForRequest(request, session, application); out.write(""); out.write("

Identifiers in effect:

"); out.write("

This is a utility that shows which identifiers are in effect.

\n"); out.write("\n"); for( Object id : idb ){ out.write( "" ); out.write( ""); out.write( "" ); out.write( "\n" ); } out.write("
classvalue
" + id.getClass().getName() + "" + id.toString() + "
\n"); out.write(""); %>