public class JaasTestUtil {
public static void initJaas( String picketBoxConfigurationFile ) {
SecurityFactory.prepare();
try {
PicketBoxConfiguration idtrustConfig = new PicketBoxConfiguration();
idtrustConfig.load(picketBoxConfigurationFile);
} catch (Exception ex) {
throw new IllegalStateException(ex);
}
}