@@ -81,12 +81,12 @@ public class Auth {
8181 /**
8282 * The ID of the last assertion processed
8383 */
84- private String assertionId ;
84+ private String lastAssertionId ;
8585
8686 /**
8787 * The NotOnOrAfter values of the last assertion processed
8888 */
89- private List <Instant > assertionNotOnOrAfter ;
89+ private List <Instant > lastAssertionNotOnOrAfter ;
9090
9191 /**
9292 * User attributes data.
@@ -375,8 +375,8 @@ public void processResponse(String requestId) throws Exception {
375375 attributes = samlResponse .getAttributes ();
376376 sessionIndex = samlResponse .getSessionIndex ();
377377 sessionExpiration = samlResponse .getSessionNotOnOrAfter ();
378- assertionId = samlResponse .getAssertionId ();
379- assertionNotOnOrAfter = samlResponse .getNotOnOrAfter ();
378+ lastAssertionId = samlResponse .getAssertionId ();
379+ lastAssertionNotOnOrAfter = samlResponse .getAssertionNotOnOrAfter ();
380380 LOGGER .debug ("processResponse success --> " + samlResponseParameter );
381381 } else {
382382 errors .add ("invalid_response" );
@@ -550,15 +550,15 @@ public final DateTime getSessionExpiration()
550550 /**
551551 * @return The ID of the last assertion processed
552552 */
553- public String getAssertionId () {
554- return assertionId ;
553+ public String getLastAssertionId () {
554+ return lastAssertionId ;
555555 }
556556
557557 /**
558558 * @return The NotOnOrAfter values of the last assertion processed
559559 */
560- public List <Instant > getAssertionNotOnOrAfter () {
561- return assertionNotOnOrAfter ;
560+ public List <Instant > getLastAssertionNotOnOrAfter () {
561+ return lastAssertionNotOnOrAfter ;
562562 }
563563
564564 /**
0 commit comments