1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18 package org.opensaml.xacml.policy.impl;
19
20 import org.opensaml.xacml.policy.DescriptionType;
21 import org.opensaml.xml.XMLObject;
22 import org.opensaml.xml.io.AbstractXMLObjectUnmarshaller;
23 import org.opensaml.xml.io.UnmarshallingException;
24 import org.w3c.dom.Attr;
25
26
27
28
29 public class DescriptionTypeUnmarshaller extends AbstractXMLObjectUnmarshaller {
30
31
32 public DescriptionTypeUnmarshaller() {
33 super();
34 }
35
36
37 protected void processAttribute(XMLObject arg0, Attr arg1) throws UnmarshallingException {
38 }
39
40
41 protected void processChildElement(XMLObject arg0, XMLObject arg1) throws UnmarshallingException {
42 }
43
44
45 protected void processElementContent(XMLObject xmlObject, String elementContent) {
46 DescriptionType description = (DescriptionType) xmlObject;
47 description.setValue(elementContent);
48 }
49
50 }