}
ApsSystemUtils.getLogger().info("CasClientTicketValidationUtil - Assertion: " + responseAssertion + " user: " + responseUser);
}
} catch (Throwable t) {
ApsSystemUtils.logThrowable(t, this, "validateTicket");
throw new ApsSystemException("Errore in CasClientTicketValidationUtil - validateTicket", t);
}
if (null != responseAssertion && null != responseUser && responseAssertion.equalsIgnoreCase(_positiveResponse) && responseUser.length() > 0 ) {
assertion = new AssertionImpl(responseUser);
}
return assertion;