When shopping for universal windows, replacement parts, or installation accessories, there's no need to consider your vehicle's year, make, or model.
public JwtExpiryAssertion(Assertable modelItem) { super(modelItem, TYPE); }
@Override protected AssertionError assertResponse(Assertable assertable, TestPropertyHolder propertyHolder) { String response = assertable.getMessageContent(); // Extract JWT, parse, check exp claim if (isJwtExpired(response)) { return new AssertionError("JWT has expired"); } return null; }