1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 package org.opensaml.xacml.ctx.impl;
20
21 import org.opensaml.xacml.ctx.StatusDetailType;
22 import org.opensaml.xml.XMLObject;
23 import org.opensaml.xml.io.AbstractXMLObjectUnmarshaller;
24 import org.opensaml.xml.io.UnmarshallingException;
25 import org.w3c.dom.Attr;
26
27
28 public class StatusDetailTypeUnmarshaller extends AbstractXMLObjectUnmarshaller {
29
30
31 public StatusDetailTypeUnmarshaller() {
32 super();
33 }
34
35
36
37
38
39
40
41
42
43 protected StatusDetailTypeUnmarshaller(String targetNamespaceURI, String targetLocalName) {
44 super(targetNamespaceURI, targetLocalName);
45 }
46
47
48
49
50 protected void processChildElement(XMLObject parentSAMLObject, XMLObject childSAMLObject)
51 throws UnmarshallingException {
52 StatusDetailType statusDetail = (StatusDetailType) parentSAMLObject;
53 statusDetail.getUnknownXMLObjects().add(childSAMLObject);
54 }
55
56
57 protected void processAttribute(XMLObject xmlObject, Attr attribute) throws UnmarshallingException {
58 }
59
60
61 protected void processElementContent(XMLObject xmlObject, String elementContent) {
62 }
63 }