1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.opensaml.saml1.core.impl;
18
19 import org.joda.time.DateTime;
20 import org.joda.time.chrono.ISOChronology;
21 import org.opensaml.saml1.core.AuthenticationStatement;
22 import org.opensaml.saml1.core.AuthorityBinding;
23 import org.opensaml.saml1.core.SubjectLocality;
24 import org.opensaml.xml.XMLObject;
25 import org.opensaml.xml.io.UnmarshallingException;
26 import org.opensaml.xml.util.DatatypeHelper;
27 import org.w3c.dom.Attr;
28
29
30
31
32 public class AuthenticationStatementUnmarshaller extends SubjectStatementUnmarshaller {
33
34
35 protected void processChildElement(XMLObject parentSAMLObject, XMLObject childSAMLObject)
36 throws UnmarshallingException {
37
38 AuthenticationStatement authenticationStatement = (AuthenticationStatement) parentSAMLObject;
39
40 if (childSAMLObject instanceof SubjectLocality) {
41 authenticationStatement.setSubjectLocality((SubjectLocality) childSAMLObject);
42 } else if (childSAMLObject instanceof AuthorityBinding) {
43 authenticationStatement.getAuthorityBindings().add((AuthorityBinding) childSAMLObject);
44 } else {
45 super.processChildElement(parentSAMLObject, childSAMLObject);
46 }
47 }
48
49
50 protected void processAttribute(XMLObject samlObject, Attr attribute) throws UnmarshallingException {
51 AuthenticationStatement authenticationStatement = (AuthenticationStatement) samlObject;
52
53 if (AuthenticationStatement.AUTHENTICATIONINSTANT_ATTRIB_NAME.equals(attribute.getLocalName())
54 && !DatatypeHelper.isEmpty(attribute.getValue())) {
55 DateTime value = new DateTime(attribute.getValue(), ISOChronology.getInstanceUTC());
56 authenticationStatement.setAuthenticationInstant(value);
57 } else if (AuthenticationStatement.AUTHENTICATIONMETHOD_ATTRIB_NAME.equals(attribute.getLocalName())) {
58 authenticationStatement.setAuthenticationMethod(attribute.getValue());
59 } else {
60 super.processAttribute(samlObject, attribute);
61 }
62 }
63 }