}
}
}
private void handlePAssertedAuthentication(SipServletRequest request) throws IOException {
PAssertedAuthenticatorFactory paf = PAssertedAuthenticatorFactory.getInstance();
PAssertedAuthenticator auth = null;
if (trustConfigId == null || trustConfigId.length() == 0) {
auth = (PAssertedAuthenticator) paf.getAuthenticator();
} else {
auth = (PAssertedAuthenticator) paf.getAuthenticator(trustConfigId);
}
if (auth == null) {
throw new SecurityException("P-Asserted Authenticator not configured");
}