Exemplo n.º 1
0
 def pre_processing(self, message, **kwargs):
     message.assertion.issue_instant = a_while_ago(hours=24)
     return message
Exemplo n.º 2
0
 def pre_processing(self, message, **kwargs):
     _confirmation = message.assertion.subject.subject_confirmation[0]
     _confirmation.subject_confirmation_data.not_on_or_after = a_while_ago(
         hours=5)
     return message
Exemplo n.º 3
0
 def pre_processing(self, message, **kwargs):
     _statement = message.assertion.authn_statement[0]
     _statement.session_not_on_or_after = a_while_ago(hours=5)
     return message
Exemplo n.º 4
0
 def pre_processing(self, message, **kwargs):
     conditions = message.assertion.conditions
     # Valid up until five hours ago
     conditions.not_on_or_after = a_while_ago(hours=5)
     return message
Exemplo n.º 5
0
 def pre_processing(self, message, **kwargs):
     message.assertion.issue_instant = a_while_ago(hours=24)
     return message
Exemplo n.º 6
0
 def pre_processing(self, message, **kwargs):
     _statement = message.assertion.authn_statement[0]
     _statement.session_not_on_or_after = a_while_ago(hours=5)
     return message
Exemplo n.º 7
0
 def pre_processing(self, message, **kwargs):
     _confirmation = message.assertion.subject.subject_confirmation[0]
     _confirmation.subject_confirmation_data.not_on_or_after = a_while_ago(
         hours=5)
     return message
Exemplo n.º 8
0
 def pre_processing(self, message, **kwargs):
     conditions = message.assertion.conditions
     # Valid up until five hours ago
     conditions.not_on_or_after = a_while_ago(hours=5)
     return message